diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-11-26 19:40:34 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-11-26 19:40:34 -0800 |
commit | f11b0e95434937aba4ec652d1fc08cc17a71e151 (patch) | |
tree | c2a608bcd63d6b3b0953bea2c2d59e736bf9b16e /libavcodec/wmavoice.c | |
parent | 498605b4ad64e63990c4a94de9ff614a3c770d01 (diff) | |
download | ffmpeg-f11b0e95434937aba4ec652d1fc08cc17a71e151.tar.gz |
wmavoice: Make format string match variable type.
Diffstat (limited to 'libavcodec/wmavoice.c')
-rw-r--r-- | libavcodec/wmavoice.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |