summaryrefslogtreecommitdiff
path: root/libavcodec/pngdec.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 /libavcodec/pngdec.c
parent92db5083077a8b0f8e1050507671b456fd155125 (diff)
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavcodec/pngdec.c')
-rw-r--r--libavcodec/pngdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index a6ab665624..d59409764d 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -453,7 +453,7 @@ static int decode_frame(AVCodecContext *avctx,
if (length > 0x7fffffff)
goto fail;
tag = bytestream2_get_le32(&s->gb);
- ff_dlog(avctx, "png: tag=%c%c%c%c length=%u\n",
+ ff_dlog(avctx, "png: tag=%c%c%c%c length=%"PRIu32"\n",
(tag & 0xff),
((tag >> 8) & 0xff),
((tag >> 16) & 0xff),