diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-06-16 12:15:29 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-06-16 12:16:05 +0300 |
commit | 7fcc6334ea8923550ba6b5347ff99dc8432234b0 (patch) | |
tree | 20beef871843b5b620e5c6a777fb98fc265f3aea /src | |
parent | Don't call close(-1) in tuklib_open_stdxxx() on error. (diff) | |
download | xz-7fcc6334ea8923550ba6b5347ff99dc8432234b0.tar.xz |
liblzma: Remove unneeded semicolon.
Diffstat (limited to 'src')
-rw-r--r-- | src/liblzma/lz/lz_encoder_hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lz/lz_encoder_hash.h b/src/liblzma/lz/lz_encoder_hash.h index c398d7d0..342a333d 100644 --- a/src/liblzma/lz/lz_encoder_hash.h +++ b/src/liblzma/lz/lz_encoder_hash.h @@ -39,7 +39,7 @@ // Endianness doesn't matter in hash_2_calc() (no effect on the output). #ifdef TUKLIB_FAST_UNALIGNED_ACCESS # define hash_2_calc() \ - const uint32_t hash_value = *(const uint16_t *)(cur); + const uint32_t hash_value = *(const uint16_t *)(cur) #else # define hash_2_calc() \ const uint32_t hash_value \ |