diff options
author | James Almer <jamrial@gmail.com> | 2017-05-04 21:19:41 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-05-04 21:21:16 -0300 |
commit | 191b2d4fc96fa87975a8eb5d87db04516b8a04c3 (patch) | |
tree | 4ba553bb859edae3c3a630330cf0224a550a4183 /libavcodec/vorbisdec.c | |
parent | 6fdd35a3126f6ecbe4ebab12bdf8867e4f544958 (diff) | |
parent | 0b77a5933635293508e7289e7cf191ed166cf070 (diff) | |
download | ffmpeg-191b2d4fc96fa87975a8eb5d87db04516b8a04c3.tar.gz |
Merge commit '0b77a5933635293508e7289e7cf191ed166cf070'
* commit '0b77a5933635293508e7289e7cf191ed166cf070':
Use correct printf conversion specifiers for POSIX integer types
See 549045254c4614d5d61b5c36e340171a6914d57c
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/vorbisdec.c')
-rw-r--r-- | libavcodec/vorbisdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c index bc6c5875c2..9cff6c3e13 100644 --- a/libavcodec/vorbisdec.c +++ b/libavcodec/vorbisdec.c @@ -731,7 +731,7 @@ static int vorbis_parse_setup_hdr_residues(vorbis_context *vc) if (!res_setup->classifs) return AVERROR(ENOMEM); - ff_dlog(NULL, " begin %"PRIu32" end %"PRIu32" part.size %d classif.s %d classbook %d \n", + ff_dlog(NULL, " begin %"PRIu32" end %"PRIu32" part.size %u classif.s %"PRIu8" classbook %"PRIu8"\n" res_setup->begin, res_setup->end, res_setup->partition_size, res_setup->classifications, res_setup->classbook); |