From 91a2974ee94d6360f93cd5c29e84efd66eed600c Mon Sep 17 00:00:00 2001
From: Panagiotis Issaris <takis.issaris@uhasselt.be>
Date: Fri, 15 Jun 2007 08:16:24 +0000
Subject: [PATCH] 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(-)

diff --git a/libavcodec/bytestream.h b/libavcodec/bytestream.h
index d1e9f82ed73..df4fca3f207 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)
-- 
GitLab