diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-27 21:31:46 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-29 14:49:29 +0200 |
commit | 549045254c4614d5d61b5c36e340171a6914d57c (patch) | |
tree | 0d2d80d1ca0c3de65f45da198e8ab09921da7fe4 /libavformat/xwma.c | |
parent | 1473afac5d11a0a90810b6cd8107d63640c9fd38 (diff) | |
download | ffmpeg-549045254c4614d5d61b5c36e340171a6914d57c.tar.gz |
Fix all -Wformat warnings raised by DJGPP
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r-- | libavformat/xwma.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c index 9235157a77..1c18772928 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -87,8 +87,9 @@ static int xwma_read_header(AVFormatContext *s) */ if (st->codecpar->codec_id != AV_CODEC_ID_WMAV2 && st->codecpar->codec_id != AV_CODEC_ID_WMAPRO) { - avpriv_request_sample(s, "Unexpected codec (tag 0x%04x; id %d)", - st->codecpar->codec_tag, st->codecpar->codec_id); + avpriv_request_sample(s, "Unexpected codec (tag %s; id %d)", + av_fourcc2str(st->codecpar->codec_tag), + st->codecpar->codec_id); } else { /* In all xWMA files I have seen, there is no extradata. But the WMA * codecs require extradata, so we provide our own fake extradata. |