1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

ffmpeg: add newline to avformat_write_header error message

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint 2016-11-12 01:38:25 +01:00
parent 66453b1fba
commit d318e06024

View File

@ -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;
}