From ac9529ceec195a0fa0acda077a9ec1d53ed0c936 Mon Sep 17 00:00:00 2001 From: Stephen Hutchinson Date: Mon, 28 Oct 2013 16:52:52 -0400 Subject: [PATCH] avisynth: Simplify a stray av_log message Signed-off-by: Michael Niedermayer --- libavformat/avisynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index 92818a5052..f9ff3dcb27 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, "%s\n", "AviSynth script did not return a clip"); + av_log(s, AV_LOG_ERROR, "AviSynth script did not return a clip"); ret = AVERROR_UNKNOWN; goto fail; }