From 9b79c65ec06f2bbe4f44c615b9df70db23126250 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 17 Dec 2017 18:03:47 +0100 Subject: lavu/lavc/lavf/lavfi: Do not use type modifier %zu on Windows MSVCRT. --- libavcodec/cbs_mpeg2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/cbs_mpeg2.c') diff --git a/libavcodec/cbs_mpeg2.c b/libavcodec/cbs_mpeg2.c index 8fb5375e3b..642a9c99b1 100644 --- a/libavcodec/cbs_mpeg2.c +++ b/libavcodec/cbs_mpeg2.c @@ -305,7 +305,7 @@ static int cbs_mpeg2_write_unit(CodedBitstreamContext *ctx, if (err < 0) { av_log(ctx->log_ctx, AV_LOG_ERROR, "Unable to allocate a " "sufficiently large write buffer (last attempt " - "%zu bytes).\n", priv->write_buffer_size); + "%"SIZE_SPECIFIER" bytes).\n", priv->write_buffer_size); return err; } } -- cgit v1.2.3