1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Fixed build warnings with qtsingleapplication

This commit is contained in:
nowrep 2011-03-24 15:51:45 +01:00
parent a42d9b950f
commit cf14bcbdf1

View File

@ -191,7 +191,7 @@ void QtLocalPeer::receiveConnection()
uMsgBuf += got;
} while (remaining && got >= 0 && socket->waitForReadyRead(2000));
if (got < 0) {
qWarning(QString("QtLocalPeer: Message reception failed "+socket->errorString()).toLocal8Bit());
qWarning("QtLocalPeer: Message reception failed %s", qPrintable(socket->errorString()));
delete socket;
return;
}