summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-12-21 11:25:34 +0100
committerDiego Biurrun <diego@biurrun.de>2016-12-23 19:30:00 +0100
commit0b77a5933635293508e7289e7cf191ed166cf070 (patch)
tree2dd54951ec6e63b1f9e7dadecb0c737c97e8fc36 /libavformat/mux.c
parent92db5083077a8b0f8e1050507671b456fd155125 (diff)
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 2561a6d6f9..a85c3c79db 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -205,7 +205,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
char tagbuf[32];
av_get_codec_tag_string(tagbuf, sizeof(tagbuf), par->codec_tag);
av_log(s, AV_LOG_ERROR,
- "Tag %s/0x%08x incompatible with output codec id '%d'\n",
+ "Tag %s/0x%08"PRIx32" incompatible with output codec id '%d'\n",
tagbuf, par->codec_tag, par->codec_id);
ret = AVERROR_INVALIDDATA;
goto fail;