Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2013-10-29 22:42:00 +0400
committerClément Bœsch <u@pkh.me>2013-10-29 22:42:08 +0400
commit8d55362fd0d40be335d42a941ce7d5afb9b8146f (patch)
tree4e3a9b25e900bd246fd30c52d1fab97bd7c2d619 /libavformat/avisynth.c
parentd4ac3e5934810523ebec37dce2cded39db467df6 (diff)
avformat/avisynth: re-add trailing \n.
Regression since ac9529ce. Spotted by Timothy Gu.
Diffstat (limited to 'libavformat/avisynth.c')
-rw-r--r--libavformat/avisynth.c2
1 files changed, 1 insertions, 1 deletions
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;
}