Skip to content

Commit

Permalink
Merge pull request #3568 from Holzhaus/logrotate-newline
Browse files Browse the repository at this point in the history
Logging: Add missing newline in logrotate error message
  • Loading branch information
uklotzde committed Jan 16, 2021
2 parents c4dda7c + 0afe257 commit 7e52e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void Logging::initialize(
}
if (!QFile::rename(logFileName, olderlogname)) {
fprintf(stderr,
"Error rolling over logfile %s",
"Error rolling over logfile %s\n",
logFileName.toLocal8Bit().constData());
}
}
Expand Down

0 comments on commit 7e52e3b

Please sign in to comment.