From d2b927d4fc6fb4ce906d910c5e969db6244c9497 Mon Sep 17 00:00:00 2001 From: Piotr Bandurski Date: Fri, 31 Aug 2012 20:50:20 +0200 Subject: [PATCH] filmstripdec: add new line to error message Signed-off-by: Michael Niedermayer --- libavformat/filmstripdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/filmstripdec.c b/libavformat/filmstripdec.c index 2f3aa6c6d1..0d02818fbf 100644 --- a/libavformat/filmstripdec.c +++ b/libavformat/filmstripdec.c @@ -45,7 +45,7 @@ static int read_header(AVFormatContext *s) avio_seek(pb, avio_size(pb) - 36, SEEK_SET); if (avio_rb32(pb) != RAND_TAG) { - av_log(s, AV_LOG_ERROR, "magic number not found"); + av_log(s, AV_LOG_ERROR, "magic number not found\n"); return AVERROR_INVALIDDATA; }