Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-01-18 02:33:02 +0300
committerClément Bœsch <u@pkh.me>2015-01-18 02:33:06 +0300
commitca3c7be7c68acd7b50ee5ad661ac52b8be3f3df3 (patch)
tree332530edb5f4cb23a680f2414328df87f921e09f /libavcodec
parentab161bfa4b3e4298581471a36ed41f84dfde27da (diff)
avcodec/tiffenc: remove double ;;
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/tiffenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c
index 59ca69c772..883cec1185 100644
--- a/libavcodec/tiffenc.c
+++ b/libavcodec/tiffenc.c
@@ -230,14 +230,14 @@ static void pack_yuv(TiffEncoderContext *s, const AVFrame *p,
ret = add_entry(s, tag, type, count, ptr_val); \
if (ret < 0) \
goto fail; \
- } while(0);
+ } while (0)
#define ADD_ENTRY1(s, tag, type, val) \
do { \
ret = add_entry1(s, tag, type, val); \
if (ret < 0) \
goto fail; \
- } while(0);
+ } while (0)
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet)