aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2024-04-10 23:09:40 +0300
committerLasse Collin <lasse.collin@tukaani.org>2024-04-10 23:12:23 +0300
commit45da936c879acf4f053a3055665bf1b10ded4462 (patch)
treeebb06f7ab3cf2b1a02f5f5a2d79ed45e31dd0da0
parentBuild: If ARM64 feature detection func is found, stop looking for others (diff)
downloadxz-45da936c879acf4f053a3055665bf1b10ded4462.tar.xz
liblzma: ARM64 CRC: Fix omission of CRC32 table
The macro name had an odd typo so the table wasn't omitted when it should have. Fixes: 1940f0ec28f08c0ac72c1413d9706fb82eabe6ad
-rw-r--r--src/liblzma/check/crc32_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/check/crc32_table.c b/src/liblzma/check/crc32_table.c
index fb1b6585..a78a629e 100644
--- a/src/liblzma/check/crc32_table.c
+++ b/src/liblzma/check/crc32_table.c
@@ -28,7 +28,7 @@
#if !defined(HAVE_ENCODERS) && (defined(X86_CLMUL_NO_TABLE) \
- || defined(ARM64_CRC32_NO_TABLE_))
+ || defined(ARM64_CRC32_NO_TABLE))
// No table needed. Use a typedef to avoid an empty translation unit.
typedef void lzma_crc32_dummy;