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 /libavformat/xwma.c | |
parent | 92db5083077a8b0f8e1050507671b456fd155125 (diff) | |
download | ffmpeg-0b77a5933635293508e7289e7cf191ed166cf070.tar.gz |
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r-- | libavformat/xwma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c index e6e72d9b52..006f60d33e 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -86,7 +86,7 @@ static int xwma_read_header(AVFormatContext *s) * anyway. */ if (st->codecpar->codec_id != AV_CODEC_ID_WMAV2) { - avpriv_request_sample(s, "Unexpected codec (tag 0x04%x; id %d)", + avpriv_request_sample(s, "Unexpected codec (tag 0x04%"PRIx32"; id %d)", st->codecpar->codec_tag, st->codecpar->codec_id); } else { /* In all xWMA files I have seen, there is no extradata. But the WMA |