[FFmpeg-cvslog] ffmpeg: Add a linebreak to an error message.

Carl Eugen Hoyos git at videolan.org
Mon Feb 27 11:28:55 EET 2017


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Feb 27 10:28:00 2017 +0100| [f8d2079a67865771097938ddfed5972c453ad603] | committer: Carl Eugen Hoyos

ffmpeg: Add a linebreak to an error message.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f8d2079a67865771097938ddfed5972c453ad603
---

 ffmpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 06570c0..38395e7 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);
         }



More information about the ffmpeg-cvslog mailing list