summaryrefslogtreecommitdiff
path: root/libavcodec/dvdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-12-11 17:29:11 +0100
committerDiego Biurrun <diego@biurrun.de>2016-10-28 13:24:44 +0200
commitc454dfcff90f0ed39c7b0d4e85664986a8b4476c (patch)
tree61f67f2888778ee7a2d5ef9ffeb1838b50f8e9a5 /libavcodec/dvdec.c
parentfbe425c8d29e473a8f69ae2dc52b1a10b77f3b44 (diff)
downloadffmpeg-c454dfcff90f0ed39c7b0d4e85664986a8b4476c.tar.gz
Use ISO C printf conversion specifiers where appropriate
Diffstat (limited to 'libavcodec/dvdec.c')
-rw-r--r--libavcodec/dvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c
index 777725d018..dc37a5efdd 100644
--- a/libavcodec/dvdec.c
+++ b/libavcodec/dvdec.c
@@ -270,7 +270,7 @@ static int dv_decode_video_segment(AVCodecContext *avctx, void *arg)
}
if (mb->pos >= 64 && mb->pos < 127)
av_log(avctx, AV_LOG_ERROR,
- "AC EOB marker is absent pos=%d\n", mb->pos);
+ "AC EOB marker is absent pos=%"PRIu8"\n", mb->pos);
block += 64;
mb++;
}