diff options
author | Marton Balint <cus@passwd.hu> | 2016-11-12 01:38:25 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-11-13 03:10:08 +0100 |
commit | d318e0602443558c3908c3c6e17b72f0ed299722 (patch) | |
tree | 9b1608629b46701e7483a7d807ace7c2c227524b | |
parent | 66453b1fba6c68f2f7f5117355d34b5f40910327 (diff) | |
download | ffmpeg-d318e0602443558c3908c3c6e17b72f0ed299722.tar.gz |
ffmpeg: add newline to avformat_write_header error message
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |