Browse code

Remove unneeded semicolon.

Originally committed as revision 9316 to svn://svn.ffmpeg.org/ffmpeg/trunk

Panagiotis Issaris authored on 2007/06/15 17:16:24
Showing 1 changed files
... ...
@@ -30,7 +30,7 @@ static av_always_inline unsigned int bytestream_get_ ## name(uint8_t **b){\
30 30
 static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\
31 31
     write(*b, value);\
32 32
     (*b) += bytes;\
33
-};
33
+}
34 34
 
35 35
 DEF(le32, 4, AV_RL32, AV_WL32)
36 36
 DEF(le24, 3, AV_RL24, AV_WL24)