From: Lasse Collin Date: Tue, 18 Jul 2023 10:49:43 +0000 (+0300) Subject: liblzma: Omit unnecessary parenthesis in a preprocessor directive. X-Git-Tag: v5.2.13~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c53f52657ca7c0bab66a2694ecbd21721b3ee6d;p=thirdparty%2Fxz.git liblzma: Omit unnecessary parenthesis in a preprocessor directive. (cherry picked from commit ef4a07ad9434f81417395f6fe0bb331e027a703b) --- diff --git a/src/liblzma/common/memcmplen.h b/src/liblzma/common/memcmplen.h index dea778c4..4bb3c436 100644 --- a/src/liblzma/common/memcmplen.h +++ b/src/liblzma/common/memcmplen.h @@ -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 #endif