]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fixed typo when undefined behavior sanitizer is not supported.
authorNathan Moinvaziri <nathan@nathanm.com>
Fri, 21 Jan 2022 20:15:36 +0000 (12:15 -0800)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Mon, 31 Jan 2022 17:26:14 +0000 (18:26 +0100)
cmake/detect-sanitizer.cmake

index 344427c44fdf6be703ad7112e8b5b633cc391ba6..fc4519ef28cfe4b3ca3c8cd3bf7fe8893dc54f84 100644 (file)
@@ -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()