diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-02-27 10:28:00 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-02-27 10:28:00 +0100 |
commit | f8d2079a67865771097938ddfed5972c453ad603 (patch) | |
tree | 9e914039668cea0362da5b2ba441064b5d3ae900 /ffmpeg.c | |
parent | 80b644c6ee3eae83830df28e49d9523ba2a38f95 (diff) | |
download | ffmpeg-f8d2079a67865771097938ddfed5972c453ad603.tar.gz |
ffmpeg: Add a linebreak to an error message.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |