diff options
author | Måns Rullgård <mans@mansr.com> | 2005-12-12 01:56:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-12-12 01:56:46 +0000 |
commit | 4733abcbf30fb662785d0c4ad3a0601e749dc57d (patch) | |
tree | 5b8bbe0c89f35eb6fedc535909dae1ffc65bc67f /libavcodec/huffyuv.c | |
parent | fccfc4753386d3aacb067f5e4117ea4d266acf72 (diff) | |
download | ffmpeg-4733abcbf30fb662785d0c4ad3a0601e749dc57d.tar.gz |
use PRIxN, %zd, %td formats where needed
Originally committed as revision 4740 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 ebb1340ac8..006d583116 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -1188,7 +1188,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, char *end= p + 1024*30; for(i=0; i<3; i++){ for(j=0; j<256; j++){ - snprintf(p, end-p, "%llu ", s->stats[i][j]); + snprintf(p, end-p, "%"PRIu64" ", s->stats[i][j]); p+= strlen(p); s->stats[i][j]= 0; } |