From: Ramiro Polla Date: Sat, 12 Sep 2009 20:10:02 +0000 (+0000) Subject: Remove ; after while(0) in macros. X-Git-Tag: v0.6~3365 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e20b196da1b7342689775bc46dc860a8b1775480;p=platform%2Fupstream%2Flibav.git Remove ; after while(0) in macros. Originally committed as revision 19828 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index f4b2ebe..0d71b50 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -74,7 +74,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, *a++ = val << 6; \ *b++ = (val >> 4) & 0xFFC0; \ *c++ = (val >> 14) & 0xFFC0; \ - } while (0); + } while (0) for (h = 0; h < avctx->height; h++) { const uint32_t *src = (const uint32_t*)psrc; diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index f1fb8d2..8f20f73 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -72,7 +72,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, ((*b++ & 0xFFC0) << 4); \ val|= (*c++ & 0xFFC0) << 14; \ bytestream_put_le32(&p, val); \ - } while (0); + } while (0) for (h = 0; h < avctx->height; h++) { uint32_t val;