Skip to content

Commit

Permalink
liblzma: ARM64 CRC: Fix omission of CRC32 table
Browse files Browse the repository at this point in the history
The macro name had an odd typo so the table wasn't omitted
when it should have.

Fixes: 1940f0e
  • Loading branch information
Larhzu committed Apr 10, 2024
1 parent 308a9af commit 45da936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liblzma/check/crc32_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 45da936

Please sign in to comment.