diff options
author | Clément Bœsch <u@pkh.me> | 2013-10-29 19:42:00 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2013-10-29 19:42:08 +0100 |
commit | 8d55362fd0d40be335d42a941ce7d5afb9b8146f (patch) | |
tree | 4e3a9b25e900bd246fd30c52d1fab97bd7c2d619 /libavformat/avisynth.c | |
parent | d4ac3e5934810523ebec37dce2cded39db467df6 (diff) | |
download | ffmpeg-8d55362fd0d40be335d42a941ce7d5afb9b8146f.tar.gz |
avformat/avisynth: re-add trailing \n.
Regression since ac9529ce.
Spotted by Timothy Gu.
Diffstat (limited to 'libavformat/avisynth.c')
-rw-r--r-- | libavformat/avisynth.c | 2 |
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; } |