From 6785cae35c4b5d407eac2d06d95e7049c191d1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 8 Jul 2007 23:15:08 +0000 Subject: trivial warning fixes Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/zmbv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/zmbv.c') diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index d0b2f3a..f7448ef 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -535,7 +535,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8 out[i * 3 + 0] = c->pal[(*src) * 3 + 0]; out[i * 3 + 1] = c->pal[(*src) * 3 + 1]; out[i * 3 + 2] = c->pal[(*src) * 3 + 2]; - *src++; + src++; } out += c->pic.linesize[0]; } -- cgit v1.1