diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-12-17 18:03:47 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-12-17 18:05:42 +0100 |
commit | 9b79c65ec06f2bbe4f44c615b9df70db23126250 (patch) | |
tree | b3bfd88aec74e7968230c86f5f5db95637ddf07e /libavformat/dump.c | |
parent | 600c8729e23b380f75252c0f8ecbdcc2e66e2e6a (diff) | |
download | ffmpeg-9b79c65ec06f2bbe4f44c615b9df70db23126250.tar.gz |
lavu/lavc/lavf/lavfi: Do not use type modifier %zu on Windows MSVCRT.
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r-- | libavformat/dump.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c index 77043e3fdb..ef143fd4e2 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -372,7 +372,9 @@ static void dump_spherical(void *ctx, AVCodecParameters *par, AVPacketSideData * size_t l, t, r, b; av_spherical_tile_bounds(spherical, par->width, par->height, &l, &t, &r, &b); - av_log(ctx, AV_LOG_INFO, "[%zu, %zu, %zu, %zu] ", l, t, r, b); + av_log(ctx, AV_LOG_INFO, + "[%"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER"] ", + l, t, r, b); } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) { av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding); } |