Browse Source

avisynth: Simplify a stray av_log message

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Stephen Hutchinson Michael Niedermayer 11 years ago
parent
commit
ac9529ceec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/avisynth.c

+ 1
- 1
libavformat/avisynth.c View File

@@ -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;
}


Loading…
Cancel
Save