From 40392c19f71985852d75997f109dea97177d6f3f Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 18 Jul 2023 13:49:43 +0300 Subject: [PATCH] liblzma: Omit unnecessary parenthesis in a preprocessor directive. --- src/liblzma/common/memcmplen.h | 4 ++-- 1 file 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 #endif