summaryrefslogtreecommitdiff
path: root/libavcodec/zmbv.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-07-08 23:15:08 +0000
committerMåns Rullgård <mans@mansr.com>2007-07-08 23:15:08 +0000
commit6785cae35c4b5d407eac2d06d95e7049c191d1f3 (patch)
tree2fc325e20e14730f9581108fbd09dbe0e7d64e62 /libavcodec/zmbv.c
parent4a64abdc63131944c4b19b9c276098d5f060077f (diff)
trivial warning fixes
Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/zmbv.c')
-rw-r--r--libavcodec/zmbv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c
index d0b2f3afa7..f7448ef7a8 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];
}