summaryrefslogtreecommitdiff
path: root/libavformat/mpjpegdec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-09 14:00:22 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-09 14:00:22 +0100
commit144ef773c7140d1ea49d54e65e989f4edcfe9958 (patch)
tree651757787a5424a0dad0a4a0df984cdb8aafbd6a /libavformat/mpjpegdec.c
parent953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff)
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavformat/mpjpegdec.c')
-rw-r--r--libavformat/mpjpegdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpjpegdec.c b/libavformat/mpjpegdec.c
index 4c2a46ba74..6f85e5620f 100644
--- a/libavformat/mpjpegdec.c
+++ b/libavformat/mpjpegdec.c
@@ -201,7 +201,7 @@ static int parse_multipart_header(AVIOContext *pb,
if (log_ctx)
av_log(log_ctx,
AV_LOG_ERROR,
- "Expected boundary '%s' not found, instead found a line of %zu bytes\n",
+ "Expected boundary '%s' not found, instead found a line of %"SIZE_SPECIFIER" bytes\n",
expected_boundary,
strlen(line));