Shut off clang warnings.
authorMathis Rosenhauer <rosenhauer@dkrz.de>
Wed, 30 Jul 2014 08:16:33 +0000 (10:16 +0200)
committerMathis Rosenhauer <rosenhauer@dkrz.de>
Wed, 30 Jul 2014 08:16:33 +0000 (10:16 +0200)
src/decode.c
src/encode_accessors.c

index 5c9a548..ecd027d 100644 (file)
@@ -180,13 +180,13 @@ static inline void put_8(struct aec_stream *strm, uint32_t data)
     *strm->next_out++ = data;
 }
 
-FLUSH(msb_32);
-FLUSH(msb_24);
-FLUSH(msb_16);
-FLUSH(lsb_32);
-FLUSH(lsb_24);
-FLUSH(lsb_16);
-FLUSH(8);
+FLUSH(msb_32)
+FLUSH(msb_24)
+FLUSH(msb_16)
+FLUSH(lsb_32)
+FLUSH(lsb_24)
+FLUSH(lsb_16)
+FLUSH(8)
 
 static inline void check_rsi_end(struct aec_stream *strm)
 {
index 77a3f3f..8779c22 100644 (file)
@@ -267,6 +267,6 @@ void aec_get_rsi_msb_32(struct aec_stream *strm)
             | (uint32_t)in[4 * i + 3];
 }
 
-AEC_GET_RSI_NATIVE_32(lsb);
+AEC_GET_RSI_NATIVE_32(lsb)
 
 #endif /* !WORDS_BIGENDIAN */