caf: Use correct printf conversion specifiers for POSIX int types
This commit is contained in:
parent
019a28cd63
commit
942269fd00
@ -292,7 +292,7 @@ static int read_header(AVFormatContext *s)
|
|||||||
default:
|
default:
|
||||||
#define _(x) ((x) >= ' ' ? (x) : ' ')
|
#define _(x) ((x) >= ' ' ? (x) : ' ')
|
||||||
av_log(s, AV_LOG_WARNING,
|
av_log(s, AV_LOG_WARNING,
|
||||||
"skipping CAF chunk: %08"PRIX32" (%"PRIu8"%"PRIu8"%"PRIu8"%"PRIu8")\n",
|
"skipping CAF chunk: %08"PRIX32" (%"PRIu32"%"PRIu32"%"PRIu32"%"PRIu32")\n",
|
||||||
tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF));
|
tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF));
|
||||||
#undef _
|
#undef _
|
||||||
case MKBETAG('f','r','e','e'):
|
case MKBETAG('f','r','e','e'):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user