diff --git a/gui/resultsview.cpp b/gui/resultsview.cpp index 960a0325f..165d3e810 100644 --- a/gui/resultsview.cpp +++ b/gui/resultsview.cpp @@ -144,7 +144,7 @@ void ResultsView::saveStatistics(const QString &filename) const return; QTextStream ts(&f); ts << '[' << QDate::currentDate().toString("dd.MM.yyyy") << "]\n"; - ts << QDateTime::currentMSecsSinceEpoch() + '\n'; + ts << QDateTime::currentMSecsSinceEpoch() << '\n'; foreach (QString tool, mStatistics->getTools()) { ts << tool << "-error:" << mStatistics->getCount(tool, ShowTypes::ShowErrors) << '\n'; ts << tool << "-warning:" << mStatistics->getCount(tool, ShowTypes::ShowWarnings) << '\n';