summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/bytestream.h2
1 files changed, 1 insertions, 1 deletions
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)