summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2017-02-27 10:28:00 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2017-02-27 10:28:00 +0100
commitf8d2079a67865771097938ddfed5972c453ad603 (patch)
tree9e914039668cea0362da5b2ba441064b5d3ae900 /ffmpeg.c
parent80b644c6ee3eae83830df28e49d9523ba2a38f95 (diff)
ffmpeg: Add a linebreak to an error message.
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 06570c0dd0..38395e7598 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -4428,7 +4428,7 @@ static int transcode(void)
continue;
}
if ((ret = av_write_trailer(os)) < 0) {
- av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s", os->filename, av_err2str(ret));
+ av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s\n", os->filename, av_err2str(ret));
if (exit_on_error)
exit_program(1);
}