projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
019a28c
)
caf: Use correct printf conversion specifiers for POSIX int types
author
Diego Biurrun
<diego@biurrun.de>
Mon, 28 Jul 2014 16:21:57 +0000
(09:21 -0700)
committer
Diego Biurrun
<diego@biurrun.de>
Mon, 28 Jul 2014 20:19:05 +0000
(13:19 -0700)
libavformat/cafdec.c
patch
|
blob
|
history
diff --git
a/libavformat/cafdec.c
b/libavformat/cafdec.c
index 7966225ea976ae5b6420685b73c50a3ba9fb0b82..657462311e3ffcd40db23a274161082f7f13168b 100644
(file)
--- a/
libavformat/cafdec.c
+++ b/
libavformat/cafdec.c
@@
-292,7
+292,7
@@
static int read_header(AVFormatContext *s)
default:
#define _(x) ((x) >= ' ' ? (x) : ' ')
av_log(s, AV_LOG_WARNING,
- "skipping CAF chunk: %08"PRIX32" (%"PRIu
8"%"PRIu8"%"PRIu8"%"PRIu8
")\n",
+ "skipping CAF chunk: %08"PRIX32" (%"PRIu
32"%"PRIu32"%"PRIu32"%"PRIu32
")\n",
tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF));
#undef _
case MKBETAG('f','r','e','e'):