From f8d2079a67865771097938ddfed5972c453ad603 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 27 Feb 2017 10:28:00 +0100 Subject: [PATCH] ffmpeg: Add a linebreak to an error message. --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }