From 0d002de4a452c0b270364ac0424368d507629463 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 12 Oct 2012 17:58:15 +0200 Subject: [PATCH] exr: fix twin ; Signed-off-by: Michael Niedermayer --- libavcodec/exr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 93ae4a63b6..6773d88515 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -230,7 +230,7 @@ static int decode_frame(AVCodecContext *avctx, unsigned int buf_size = avpkt->size; const uint8_t *buf_end = buf + buf_size; - const AVPixFmtDescriptor *desc;; + const AVPixFmtDescriptor *desc; EXRContext *const s = avctx->priv_data; AVFrame *picture = data; AVFrame *const p = &s->picture;