aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/omaenc.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/omaenc.c
parent92db5083077a8b0f8e1050507671b456fd155125 (diff)
downloadffmpeg-0b77a5933635293508e7289e7cf191ed166cf070.tar.gz
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavformat/omaenc.c')
-rw-r--r--libavformat/omaenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omaenc.c b/libavformat/omaenc.c
index 50f369d967..793d0fd345 100644
--- a/libavformat/omaenc.c
+++ b/libavformat/omaenc.c
@@ -84,7 +84,7 @@ static av_cold int oma_write_header(AVFormatContext *s)
(par->block_align/8 - 1));
break;
default:
- av_log(s, AV_LOG_ERROR, "OMA: unsupported codec tag %d for write\n",
+ av_log(s, AV_LOG_ERROR, "OMA: unsupported codec tag %"PRIu32" for write\n",
par->codec_tag);
}
for (i = 0; i < (EA3_HEADER_SIZE - 36)/4; i++)