Add missing line break after logging ffmpeg error

This commit is contained in:
Martchus 2021-07-03 20:04:49 +02:00
parent 5da3cae040
commit b72e9a8da5
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ void FfmpegLauncher::ffmpegStarted()
void FfmpegLauncher::ffmpegError()
{
cerr << "Failed to start ffmpeg: " << m_ffmpeg->errorString();
cerr << "Failed to start ffmpeg: " << m_ffmpeg->errorString() << '\n';
}
void FfmpegLauncher::ffmpegFinished(int exitCode)