summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2016-11-12 01:38:25 +0100
committerMarton Balint <cus@passwd.hu>2016-11-13 03:10:08 +0100
commitd318e0602443558c3908c3c6e17b72f0ed299722 (patch)
tree9b1608629b46701e7483a7d807ace7c2c227524b /ffmpeg.c
parent66453b1fba6c68f2f7f5117355d34b5f40910327 (diff)
ffmpeg: add newline to avformat_write_header error message
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffmpeg.c')
-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;
}