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/libutvideoenc.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/libutvideoenc.cpp') diff --git a/libavcodec/libutvideoenc.cpp b/libavcodec/libutvideoenc.cpp index dccfa6b807..9ddd0c1962 100644 --- a/libavcodec/libutvideoenc.cpp +++ b/libavcodec/libutvideoenc.cpp @@ -130,9 +130,8 @@ static int utvideo_encode_frame(AVCodecContext *avctx, AVPacket *pkt, uint8_t *dst; /* Alloc buffer */ - if ((ret = ff_alloc_packet2(avctx, pkt, utv->buf_size)) < 0) { + if ((ret = ff_alloc_packet2(avctx, pkt, utv->buf_size)) < 0) return ret; - } dst = pkt->data; -- cgit v1.2.3