ffmpeg: Add a linebreak to an error message.

This commit is contained in:
Carl Eugen Hoyos 2017-02-27 10:28:00 +01:00
parent 80b644c6ee
commit f8d2079a67

View File

@ -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);
}