From: Piotr Bandurski Date: Fri, 31 Aug 2012 18:50:20 +0000 (+0200) Subject: filmstripdec: add new line to error message X-Git-Tag: n1.0~502 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/d2b927d4fc6fb4ce906d910c5e969db6244c9497 filmstripdec: add new line to error message Signed-off-by: Michael Niedermayer --- 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; }