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/proresdec2.c | |
parent | ee731c1ab071ee51839fd6c2db15dc719349ebb2 (diff) | |
download | ffmpeg-66160bdb0140586c44e494336c3c05f5928a6367.tar.gz |
cleanup: remove two extraneous semicolons.
Diffstat (limited to 'libavcodec/proresdec2.c')
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index a96af4fa9f..7f940d2788 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -277,7 +277,7 @@ static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, cons val = q; \ SKIP_BITS(re, gb, q+1); \ } \ - } while (0); \ + } while (0) #define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1))) |