Browse Source

wmavoice: Make format string match variable type.

tags/n0.9
Alex Converse 14 years ago
parent
commit
f11b0e9543
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/wmavoice.c

+ 1
- 1
libavcodec/wmavoice.c View File

@@ -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;
}


Loading…
Cancel
Save