summaryrefslogtreecommitdiff
path: root/libavcodec/v210dec.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-09-12 20:10:02 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-09-12 20:10:02 +0000
commite20b196da1b7342689775bc46dc860a8b1775480 (patch)
tree241beb715834f1398f5d05e5a5b63bfa4ffe5af4 /libavcodec/v210dec.c
parent0345f36bbdd63f61dae07cbf9e307f8746b1227e (diff)
Remove ; after while(0) in macros.
Originally committed as revision 19828 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/v210dec.c')
-rw-r--r--libavcodec/v210dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c
index f4b2ebe67e..0d71b5004f 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;