From b94f045b18f14d6f5399fe6a1ff917a78c60e1fc Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 8 Jun 2013 17:38:32 +0000 Subject: [PATCH] wavpack: add missing .\n to entropy error message Signed-off-by: Paul B Mahol --- libavcodec/wavpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c index 48323315b3..de5bc6ca8c 100644 --- a/libavcodec/wavpack.c +++ b/libavcodec/wavpack.c @@ -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;