From d318e0602443558c3908c3c6e17b72f0ed299722 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Sat, 12 Nov 2016 01:38:25 +0100 Subject: [PATCH] ffmpeg: add newline to avformat_write_header error message Reviewed-by: Michael Niedermayer Signed-off-by: Marton Balint --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }