From 91a2974ee94d6360f93cd5c29e84efd66eed600c Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Fri, 15 Jun 2007 08:16:24 +0000 Subject: Remove unneeded semicolon. Originally committed as revision 9316 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bytestream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/bytestream.h') diff --git a/libavcodec/bytestream.h b/libavcodec/bytestream.h index d1e9f82ed7..df4fca3f20 100644 --- a/libavcodec/bytestream.h +++ b/libavcodec/bytestream.h @@ -30,7 +30,7 @@ static av_always_inline unsigned int bytestream_get_ ## name(uint8_t **b){\ static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\ write(*b, value);\ (*b) += bytes;\ -}; +} DEF(le32, 4, AV_RL32, AV_WL32) DEF(le24, 3, AV_RL24, AV_WL24) -- cgit v1.2.3