diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
commit | 7906085fcc33feb5a0c617f5e01065bb9d0caa86 (patch) | |
tree | 830c3feb8c2c6333c5581ab5ae54d06ff267cc7d /libavcodec/4xm.c | |
parent | d957696f173ab3c9f222ab097669ed8f0b3951c2 (diff) | |
download | ffmpeg-7906085fcc33feb5a0c617f5e01065bb9d0caa86.tar.gz |
warning patrol
Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 6544d88d0f..304453d6f1 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -354,7 +354,7 @@ static int decode_p_frame(FourXContext *f, uint8_t *buf, int length){ } if(bitstream_size != (get_bits_count(&f->gb)+31)/32*4) - av_log(f->avctx, AV_LOG_ERROR, " %d %d %d bytes left\n", + av_log(f->avctx, AV_LOG_ERROR, " %d %zd %zd bytes left\n", bitstream_size - (get_bits_count(&f->gb)+31)/32*4, bytestream_size - (f->bytestream - (buf + 20 + bitstream_size + wordstream_size)), wordstream_size - (((uint8_t*)f->wordstream) - (buf + 20 + bitstream_size)) |