Skip to content
Snippets Groups Projects
Commit 1faf0d6a authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

Add missing CRLFs to avisynth error messages.

parent 757d5b9b
Branches
Tags
No related merge requests found
...@@ -60,7 +60,7 @@ static int avisynth_read_header(AVFormatContext *s) ...@@ -60,7 +60,7 @@ static int avisynth_read_header(AVFormatContext *s)
res = AVIFileOpen(&avs->file, filename_char, OF_READ|OF_SHARE_DENY_WRITE, NULL); res = AVIFileOpen(&avs->file, filename_char, OF_READ|OF_SHARE_DENY_WRITE, NULL);
if (res != S_OK) 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(); AVIFileExit();
return -1; return -1;
} }
...@@ -68,7 +68,7 @@ static int avisynth_read_header(AVFormatContext *s) ...@@ -68,7 +68,7 @@ static int avisynth_read_header(AVFormatContext *s)
res = AVIFileInfo(avs->file, &info, sizeof(info)); res = AVIFileInfo(avs->file, &info, sizeof(info));
if (res != S_OK) 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(); AVIFileExit();
return -1; return -1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment