Commit ac9529ce authored by Stephen Hutchinson's avatar Stephen Hutchinson Committed by Michael Niedermayer

avisynth: Simplify a stray av_log message

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7ac67583
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment