summaryrefslogtreecommitdiff
path: root/libavcodec/cljr.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-12-08 14:45:36 +0000
committerMans Rullgard <mans@mansr.com>2011-12-08 15:56:30 +0000
commit9a1420bfda41f32a9e1b6d57517d2d4c6924c434 (patch)
treea68cd97c8e01ff83bffb820c66d5f9fa2b84fd38 /libavcodec/cljr.c
parentca52bae6ec7588ae72a5a011d7af80645f999e5e (diff)
cljr: remove stray semicolon
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r--libavcodec/cljr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index 61bd909199..1b8bc53fb3 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -139,7 +139,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
static av_cold int decode_end(AVCodecContext *avctx) {
CLJRContext *a = avctx->priv_data;
- if (a->picture.data[0]);
+ if (a->picture.data[0])
avctx->release_buffer(avctx, &a->picture);
return 0;
}