From 8d55362fd0d40be335d42a941ce7d5afb9b8146f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Tue, 29 Oct 2013 19:42:00 +0100 Subject: [PATCH] avformat/avisynth: re-add trailing \n. Regression since ac9529ce. Spotted by Timothy Gu. --- libavformat/avisynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index 6838bf5f92..e35306b6a5 100644 --- a/libavformat/avisynth.c +++ b/libavformat/avisynth.c @@ -382,7 +382,7 @@ static int avisynth_open_file(AVFormatContext *s) goto fail; } if (!avs_is_clip(val)) { - av_log(s, AV_LOG_ERROR, "AviSynth script did not return a clip"); + av_log(s, AV_LOG_ERROR, "AviSynth script did not return a clip\n"); ret = AVERROR_UNKNOWN; goto fail; }