]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: ARM64 CRC: Fix omission of CRC32 table
authorLasse Collin <lasse.collin@tukaani.org>
Wed, 10 Apr 2024 20:09:40 +0000 (23:09 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Wed, 10 Apr 2024 20:12:23 +0000 (23:12 +0300)
The macro name had an odd typo so the table wasn't omitted
when it should have.

Fixes: 1940f0ec28f08c0ac72c1413d9706fb82eabe6ad
src/liblzma/check/crc32_table.c

index fb1b6585422aaa37557cfc6c861729c203926c7e..a78a629ecc18308801a4f061a5a7892e53e03ea3 100644 (file)
@@ -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;