From: Nathan Moinvaziri Date: Fri, 21 Jan 2022 20:15:36 +0000 (-0800) Subject: Fixed typo when undefined behavior sanitizer is not supported. X-Git-Tag: 2.1.0-beta1~400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=575ed3ac77c37409d1fcdc5fa074fd74db956354;p=thirdparty%2Fzlib-ng.git Fixed typo when undefined behavior sanitizer is not supported. --- diff --git a/cmake/detect-sanitizer.cmake b/cmake/detect-sanitizer.cmake index 344427c44..fc4519ef2 100644 --- a/cmake/detect-sanitizer.cmake +++ b/cmake/detect-sanitizer.cmake @@ -133,6 +133,6 @@ macro(add_undefined_sanitizer) add_compile_options(-fno-sanitize=alignment) endif() else() - message(STATUS "UNdefined behavior sanitizer is not supported") + message(STATUS "Undefined behavior sanitizer is not supported") endif() endmacro()