]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fixed broken macro.
authorJack Pappas <jack.pappas+github@tidepowerd.com>
Sun, 14 Sep 2014 22:36:38 +0000 (18:36 -0400)
committerJack Pappas <jack.pappas+github@tidepowerd.com>
Sun, 14 Sep 2014 22:36:38 +0000 (18:36 -0400)
zutil.h

diff --git a/zutil.h b/zutil.h
index d6a06dc6bc5b1a5f8f524a85275d3bd59ad661c8..332673f51964ec2f77024d16bd8a08e3b4972275 100644 (file)
--- a/zutil.h
+++ b/zutil.h
@@ -253,7 +253,7 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
 #  pragma intrinsic(_byteswap_ulong)
 #  define ZSWAP32(q) _byteswap_ulong(q)
 
-#elif defined(__Clang__) || (defined(__GNUC__) &&
+#elif defined(__Clang__) || (defined(__GNUC__) && \
         (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)))
 #  define ZSWAP32(q) __builtin_bswap32(q)