summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2022-09-30 10:39:03 -0700
committerThiago Macieira <thiago.macieira@intel.com>2022-10-02 16:46:56 -0700
commite418a9b9bfd8ba8df1e734bbf802077bd7c724ce (patch)
treea35e7503c038cce6b176ba959b8719fa831764fd
parentd46eeffe83db56aea7703d20351dde2969bf372a (diff)
syncqt: remove newline before endl
Causes newlines between lines in the output: QtBluetooth: WARNING: adapter1_bluez5_p.h does not have the "We mean it." warning QtBluetooth: WARNING: battery1_p.h does not have the "We mean it." warning QtBluetooth: WARNING: device1_bluez5_p.h does not have the "We mean it." warning Change-Id: I810d70e579eb4e2c8e45fffd1719b415dd74ee43 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
-rw-r--r--src/tools/syncqt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/syncqt/main.cpp b/src/tools/syncqt/main.cpp
index 1e18ca2082..dd5c181511 100644
--- a/src/tools/syncqt/main.cpp
+++ b/src/tools/syncqt/main.cpp
@@ -1208,7 +1208,7 @@ public:
if (!(skipChecks & WeMeantItChecks) && !hasWeMeantIt) {
faults |= WeMeantItChecks;
std::cerr << m_commandLineArgs->moduleName() << ": WARNING: " << m_currentFilename
- << " does not have the \"We mean it.\" warning\n"
+ << " does not have the \"We mean it.\" warning"
<< std::endl;
}