From: Lasse Collin Date: Thu, 16 Jun 2011 09:15:29 +0000 (+0300) Subject: liblzma: Remove unneeded semicolon. X-Git-Tag: upstream/5.1.3~123 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=324cde7a864f4506c32ae7846d688c359a83fe65;p=platform%2Fupstream%2Fxz.git liblzma: Remove unneeded semicolon. --- diff --git a/src/liblzma/lz/lz_encoder_hash.h b/src/liblzma/lz/lz_encoder_hash.h index c398d7d..342a333 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 \