[FFmpeg-cvslog] Add missing CRLFs to avisynth error messages.

Carl Eugen Hoyos git at videolan.org
Tue Jun 5 11:14:06 CEST 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Jun  5 11:13:30 2012 +0200| [1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9] | committer: Carl Eugen Hoyos

Add missing CRLFs to avisynth error messages.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9
---

 libavformat/avisynth.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index 4a00787..edde778 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -60,7 +60,7 @@ static int avisynth_read_header(AVFormatContext *s)
   res = AVIFileOpen(&avs->file, filename_char, 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;
     }
@@ -68,7 +68,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;
     }



More information about the ffmpeg-cvslog mailing list