]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix bogus indentation.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 5 Dec 2018 17:37:23 +0000 (12:37 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 5 Dec 2018 17:37:23 +0000 (12:37 -0500)
config-scripts/cups-compiler.m4

index 7cd440ff487d518d0ff7a6a08a68f829cc89a9a1..89176fd3bdaae44d9bdd91d2b4049daaa99a1be7 100644 (file)
@@ -102,15 +102,15 @@ if test -n "$GCC"; then
 
         # Address sanitizer is a useful tool to use when developing/debugging
         # code but adds about 2x overhead...
-        if test x$enable_sanitizer = xyes; then
-               # Use -fsanitize=address with debugging...
+       if test x$enable_sanitizer = xyes; then
+               # Use -fsanitize=address with debugging...
                OPTIM="$OPTIM -g -fsanitize=address"
-        else
-               # Otherwise use the Fortify enhancements to catch any unbounded
-               # string operations...
-               CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
-               CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2"
-        fi
+       else
+               # Otherwise use the Fortify enhancements to catch any unbounded
+               # string operations...
+               CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
+               CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2"
+       fi
 
        # Default optimization options...
        if test -z "$OPTIM"; then