mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 21:40:34 +00:00
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'
This commit is contained in:
parent
6a9e331d79
commit
163cc67beb
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user