summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarton Balint <[email protected]>2016-11-12 01:38:25 +0100
committerMarton Balint <[email protected]>2016-11-13 03:10:08 +0100
commitd318e0602443558c3908c3c6e17b72f0ed299722 (patch)
tree9b1608629b46701e7483a7d807ace7c2c227524b
parent66453b1fba6c68f2f7f5117355d34b5f40910327 (diff)
ffmpeg: add newline to avformat_write_header error message
Reviewed-by: Michael Niedermayer <[email protected]> Signed-off-by: Marton Balint <[email protected]>
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 067ef1dab5..37f4fecb99 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2800,7 +2800,7 @@ static int check_init_output_file(OutputFile *of, int file_index)
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR,
"Could not write header for output file #%d "
- "(incorrect codec parameters ?): %s",
+ "(incorrect codec parameters ?): %s\n",
file_index, av_err2str(ret));
return ret;
}