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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2013-10-29 00:52:52 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-10-29 01:30:36 +0400
commitac9529ceec195a0fa0acda077a9ec1d53ed0c936 (patch)
tree3d8f07e9361cd270f74ae34c4a411e30b2a6b275 /libavformat/avisynth.c
parent7ac67583c3a8edbd06426401186bf752534916b1 (diff)
avisynth: Simplify a stray av_log message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 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;
}