diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2003-05-24 18:48:30 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2003-05-24 18:48:30 +0000 |
commit | 4cfbf61bf173e303e253d95717d5038c8c8c529c (patch) | |
tree | 329da6e4dd478648a38326868adf19d0758aeb5c /libavcodec/huffyuv.c | |
parent | f184683552090cc9d38a7b1c8d27bb348a2ef7b4 (diff) | |
download | ffmpeg-4cfbf61bf173e303e253d95717d5038c8c8c529c.tar.gz |
Warning and compatibility fixes.
Originally committed as revision 1902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r-- | libavcodec/huffyuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index 7d41ef3b61..26058b19ee 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -1097,7 +1097,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, char *p= avctx->stats_out; for(i=0; i<3; i++){ for(j=0; j<256; j++){ - sprintf(p, "%Ld ", s->stats[i][j]); + sprintf(p, "%llu ", s->stats[i][j]); p+= strlen(p); s->stats[i][j]= 0; } |