]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: Omit unnecessary parenthesis in a preprocessor directive.
authorLasse Collin <lasse.collin@tukaani.org>
Tue, 18 Jul 2023 10:49:43 +0000 (13:49 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Tue, 18 Jul 2023 10:49:43 +0000 (13:49 +0300)
src/liblzma/common/memcmplen.h

index 4392c1cfc3ddc125f3e4f525afd0d7612b21cde2..4d1ef7b478ef1aa7cfb0ccf8bf0a453e86771793 100644 (file)
@@ -23,9 +23,9 @@
 // on Windows when using an MSVC compatible compiler. The Intel compiler
 // can use the intrinsics without the header file.
 #if defined(TUKLIB_FAST_UNALIGNED_ACCESS) \
-               && (defined(_MSC_VER) \
+               && defined(_MSC_VER) \
                && defined(_M_X64) \
-               && !defined(__INTEL_COMPILER))
+               && !defined(__INTEL_COMPILER)
 #      include <intrin.h>
 #endif