diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-21 11:25:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-23 19:30:00 +0100 |
commit | 0b77a5933635293508e7289e7cf191ed166cf070 (patch) | |
tree | 2dd54951ec6e63b1f9e7dadecb0c737c97e8fc36 /libavcodec/wmaprodec.c | |
parent | 92db5083077a8b0f8e1050507671b456fd155125 (diff) | |
download | ffmpeg-0b77a5933635293508e7289e7cf191ed166cf070.tar.gz |
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index daeaa79a7b..08b41f446f 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -607,8 +607,8 @@ static int decode_tilehdr(WMAProDecodeCtx *s) int i; int offset = 0; for (i = 0; i < s->channel[c].num_subframes; i++) { - ff_dlog(s->avctx, "frame[%i] channel[%i] subframe[%i]" - " len %i\n", s->frame_num, c, i, + ff_dlog(s->avctx, "frame[%"PRIi32"] channel[%i] subframe[%i]" + " len %"PRIu16"\n", s->frame_num, c, i, s->channel[c].subframe_len[i]); s->channel[c].subframe_offset[i] = offset; offset += s->channel[c].subframe_len[i]; |