diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-12-12 01:56:52 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-12-12 17:49:33 +0100 |
commit | 66160bdb0140586c44e494336c3c05f5928a6367 (patch) | |
tree | 248323c2aaacad06576cec178a48d3c82e81274a /libavcodec/libx264.c | |
parent | ee731c1ab071ee51839fd6c2db15dc719349ebb2 (diff) | |
download | ffmpeg-66160bdb0140586c44e494336c3c05f5928a6367.tar.gz |
cleanup: remove two extraneous semicolons.
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 38351e59cf..499c9536df 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -245,7 +245,7 @@ static av_cold int X264_close(AVCodecContext *avctx) "bad value for '%s': '%s'\n", opt, param); \ return -1; \ } \ - } while (0); + } while (0) static int convert_pix_fmt(enum PixelFormat pix_fmt) { |