1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-29 05:57:37 +02:00

Fix all -Wformat warnings raised by DJGPP

This commit is contained in:
Clément Bœsch
2017-03-27 21:31:46 +02:00
parent 1473afac5d
commit 549045254c
56 changed files with 118 additions and 101 deletions

View File

@@ -94,7 +94,7 @@ static int ircam_read_header(AVFormatContext *s)
st->codecpar->codec_id = ff_codec_get_id(tags, tag);
if (st->codecpar->codec_id == AV_CODEC_ID_NONE) {
av_log(s, AV_LOG_ERROR, "unknown tag %X\n", tag);
av_log(s, AV_LOG_ERROR, "unknown tag %"PRIx32"\n", tag);
return AVERROR_INVALIDDATA;
}