1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

liblzma: Remove unneeded semicolon.

This commit is contained in:
Lasse Collin 2011-06-16 12:15:29 +03:00
parent 631f4d3ae6
commit 7fcc6334ea

View file

@ -39,7 +39,7 @@
// Endianness doesn't matter in hash_2_calc() (no effect on the output). // Endianness doesn't matter in hash_2_calc() (no effect on the output).
#ifdef TUKLIB_FAST_UNALIGNED_ACCESS #ifdef TUKLIB_FAST_UNALIGNED_ACCESS
# define hash_2_calc() \ # define hash_2_calc() \
const uint32_t hash_value = *(const uint16_t *)(cur); const uint32_t hash_value = *(const uint16_t *)(cur)
#else #else
# define hash_2_calc() \ # define hash_2_calc() \
const uint32_t hash_value \ const uint32_t hash_value \