]> 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, 7 May 2024 12:28:35 +0000 (15:28 +0300)
(cherry picked from commit ef4a07ad9434f81417395f6fe0bb331e027a703b)

src/liblzma/common/memcmplen.h

index dea778c487f81588ed069ee4d09c614a6f51bf63..4bb3c43660b3d6b2092001f26d6ee8623639095c 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