From: Alex Converse Date: Sun, 27 Nov 2011 03:40:34 +0000 (-0800) Subject: wmavoice: Make format string match variable type. X-Git-Tag: android-x86-4.4-r1~8529^2~4416 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f11b0e95434937aba4ec652d1fc08cc17a71e151;p=android-x86%2Fexternal-ffmpeg.git wmavoice: Make format string match variable type. --- diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index 61258ba1ce..d6d4cb2963 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -1795,7 +1795,7 @@ static int synth_superframe(AVCodecContext *ctx, out_size = n_samples * av_get_bytes_per_sample(ctx->sample_fmt); if (*data_size < out_size) { av_log(ctx, AV_LOG_ERROR, - "Output buffer too small (%d given - %zu needed)\n", + "Output buffer too small (%d given - %d needed)\n", *data_size, out_size); return -1; }