Browse Source

Add missing CRLFs to avisynth error messages.

(cherry picked from commit 1faf0d6a7a)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11.1
Carl Eugen Hoyos Michael Niedermayer 13 years ago
parent
commit
af3f7c88f2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/avisynth.c

+ 2
- 2
libavformat/avisynth.c View File

@@ -55,7 +55,7 @@ static int avisynth_read_header(AVFormatContext *s)
res = AVIFileOpen(&avs->file, s->filename, OF_READ|OF_SHARE_DENY_WRITE, NULL);
if (res != S_OK)
{
av_log(s, AV_LOG_ERROR, "AVIFileOpen failed with error %ld", res);
av_log(s, AV_LOG_ERROR, "AVIFileOpen failed with error %ld\n", res);
AVIFileExit();
return -1;
}
@@ -63,7 +63,7 @@ static int avisynth_read_header(AVFormatContext *s)
res = AVIFileInfo(avs->file, &info, sizeof(info));
if (res != S_OK)
{
av_log(s, AV_LOG_ERROR, "AVIFileInfo failed with error %ld", res);
av_log(s, AV_LOG_ERROR, "AVIFileInfo failed with error %ld\n", res);
AVIFileExit();
return -1;
}


Loading…
Cancel
Save