summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-06-05 11:13:30 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-07 00:55:26 +0200
commitaf3f7c88f2a17c1115939713eedf9779c8650a70 (patch)
treea5f8ad6e816b485d8f941b3c8b3b3350448d4480
parentb4294e231912f0a29828610952b82a8afebeea4d (diff)
downloadffmpeg-af3f7c88f2a17c1115939713eedf9779c8650a70.tar.gz
Add missing CRLFs to avisynth error messages.
(cherry picked from commit 1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/avisynth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index 13b5f4309c..4ebca5ecba 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -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;
}