Commit f11b0e95 authored by Alex Converse's avatar Alex Converse

wmavoice: Make format string match variable type.

parent 498605b4
...@@ -1795,7 +1795,7 @@ static int synth_superframe(AVCodecContext *ctx, ...@@ -1795,7 +1795,7 @@ static int synth_superframe(AVCodecContext *ctx,
out_size = n_samples * av_get_bytes_per_sample(ctx->sample_fmt); out_size = n_samples * av_get_bytes_per_sample(ctx->sample_fmt);
if (*data_size < out_size) { if (*data_size < out_size) {
av_log(ctx, AV_LOG_ERROR, 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); *data_size, out_size);
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment