diff options
author | Mans Rullgard <mans@mansr.com> | 2011-12-08 14:45:36 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-12-08 15:56:30 +0000 |
commit | 9a1420bfda41f32a9e1b6d57517d2d4c6924c434 (patch) | |
tree | a68cd97c8e01ff83bffb820c66d5f9fa2b84fd38 /libavcodec | |
parent | ca52bae6ec7588ae72a5a011d7af80645f999e5e (diff) | |
download | ffmpeg-9a1420bfda41f32a9e1b6d57517d2d4c6924c434.tar.gz |
cljr: remove stray semicolon
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cljr.c | 2 |
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; } |