diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-09 14:00:22 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-09 14:00:22 +0100 |
commit | 144ef773c7140d1ea49d54e65e989f4edcfe9958 (patch) | |
tree | 651757787a5424a0dad0a4a0df984cdb8aafbd6a /libavformat/mpjpegdec.c | |
parent | 953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff) | |
download | ffmpeg-144ef773c7140d1ea49d54e65e989f4edcfe9958.tar.gz |
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavformat/mpjpegdec.c')
-rw-r--r-- | libavformat/mpjpegdec.c | 2 |
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)); |