diff options
author | Stephen Hutchinson <qyot27@gmail.com> | 2013-10-28 16:52:52 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 22:30:36 +0100 |
commit | ac9529ceec195a0fa0acda077a9ec1d53ed0c936 (patch) | |
tree | 3d8f07e9361cd270f74ae34c4a411e30b2a6b275 /libavformat | |
parent | 7ac67583c3a8edbd06426401186bf752534916b1 (diff) | |
download | ffmpeg-ac9529ceec195a0fa0acda077a9ec1d53ed0c936.tar.gz |
avisynth: Simplify a stray av_log message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-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 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; } |