diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-07-18 13:49:43 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-07-18 14:03:08 +0300 |
commit | ef4a07ad9434f81417395f6fe0bb331e027a703b (patch) | |
tree | 5b0c02923c3d65a2e202b72a990854c5133999e5 /src/liblzma/common/memcmplen.h | |
parent | liblzma: Prevent warning for MSYS2 Windows build. (diff) | |
download | xz-ef4a07ad9434f81417395f6fe0bb331e027a703b.tar.xz |
liblzma: Omit unnecessary parenthesis in a preprocessor directive.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/common/memcmplen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/common/memcmplen.h b/src/liblzma/common/memcmplen.h index 4392c1cf..4d1ef7b4 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 <intrin.h> #endif |