Commit b94f045b authored by Paul B Mahol's avatar Paul B Mahol

wavpack: add missing .\n to entropy error message

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 9644fc95
......@@ -916,7 +916,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
case WP_ID_ENTROPY:
if (size != 6 * (s->stereo_in + 1)) {
av_log(avctx, AV_LOG_ERROR,
"Entropy vars size should be %i, got %i",
"Entropy vars size should be %i, got %i.\n",
6 * (s->stereo_in + 1), size);
bytestream2_skip(&gb, ssize);
continue;
......
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