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>
This commit is contained in:
Thiago Macieira 2022-09-30 10:39:03 -07:00
parent d46eeffe83
commit e418a9b9bf

View File

@ -1208,7 +1208,7 @@ public:
if (!(skipChecks & WeMeantItChecks) && !hasWeMeantIt) { if (!(skipChecks & WeMeantItChecks) && !hasWeMeantIt) {
faults |= WeMeantItChecks; faults |= WeMeantItChecks;
std::cerr << m_commandLineArgs->moduleName() << ": WARNING: " << m_currentFilename 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; << std::endl;
} }