aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2023-07-18 13:49:43 +0300
committerLasse Collin <lasse.collin@tukaani.org>2023-07-18 13:49:43 +0300
commit40392c19f71985852d75997f109dea97177d6f3f (patch)
treed40335484337d3f1596c8f0cdab9926de03434e5 /src/liblzma/common
parentxz: Update Authors list in a few files. (diff)
downloadxz-40392c19f71985852d75997f109dea97177d6f3f.tar.xz
liblzma: Omit unnecessary parenthesis in a preprocessor directive.
Diffstat (limited to 'src/liblzma/common')
-rw-r--r--src/liblzma/common/memcmplen.h4
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