summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-06-05 11:13:30 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-06-05 11:13:30 +0200
commit1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9 (patch)
tree0f0a44b40f5c786492c4f7dc504b54a708eed407 /libavformat
parent757d5b9bfda45e45d9ab28ad4d5a9205119fe549 (diff)
downloadffmpeg-streaming-1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9.zip
ffmpeg-streaming-1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9.tar.gz
Add missing CRLFs to avisynth error messages.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avisynth.c4
1 files 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;
}
OpenPOWER on IntegriCloud