summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2017-03-24 17:35:06 +0100
committerDiego Biurrun <diego@biurrun.de>2017-03-31 18:41:58 +0200
commit163cc67beb3ed28aeb500c9a09df47c8df613025 (patch)
tree6217592c7392a5c5b2161dc72307fe7545bbd01b /libavformat
parent6a9e331d79f8f78ba7642004ac13d744d033b98e (diff)
takdec: Use ISO C printf conversion specifiers where appropriate
libavformat/takdec.c:144:20: warning: format '%X' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t'
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/takdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/takdec.c b/libavformat/takdec.c
index 4b3037d9ca..b3739e446e 100644
--- a/libavformat/takdec.c
+++ b/libavformat/takdec.c
@@ -140,7 +140,7 @@ static int tak_read_header(AVFormatContext *s)
bitstream_read(&bc, TAK_LAST_FRAME_SIZE_BITS);
av_freep(&buffer);
} else if (type == TAK_METADATA_ENCODER) {
- av_log(s, AV_LOG_VERBOSE, "encoder version: %0X\n",
+ av_log(s, AV_LOG_VERBOSE, "encoder version: %0"PRIX32"\n",
bitstream_read(&bc, TAK_ENCODER_VERSION_BITS));
av_freep(&buffer);
}