From ae2c33b0c28ec9dd2c78538062798f6dace6b20b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 22 Mar 2012 20:22:39 +0000 Subject: cosmetics: remove superfluous curly brackets Signed-off-by: Paul B Mahol Signed-off-by: Michael Niedermayer --- libavcodec/msvideo1enc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/msvideo1enc.c') diff --git a/libavcodec/msvideo1enc.c b/libavcodec/msvideo1enc.c index b4ba4be4ec..aa3c26a62d 100644 --- a/libavcodec/msvideo1enc.c +++ b/libavcodec/msvideo1enc.c @@ -76,9 +76,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, int i, j, k, x, y, ret; int skips = 0; - if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width*avctx->height*9 + FF_MIN_BUFFER_SIZE)) < 0) { + if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width*avctx->height*9 + FF_MIN_BUFFER_SIZE)) < 0) return ret; - } dst= buf= pkt->data; *p = *pict; -- cgit v1.2.1