X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcore.cpp;h=b156b2dc70dd900d975aae58f4e575bbfb1138c4;hp=f9f8673cb3f69b4f3ce46a118459f4fe3b78fa00;hb=2f953e817b56e8dfd3770b2109b3a81b0854f3a8;hpb=6623ba49cc1361179e95e8e3b976fd4c45298949 diff --git a/src/core/core.cpp b/src/core/core.cpp index f9f8673c..b156b2dc 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -333,7 +333,7 @@ QHash Core::bufferLastSeenMsgIds(UserId user) { bool Core::startListening(uint port) { if(!server.listen(QHostAddress::Any, port)) { - qWarning(qPrintable(QString("Could not open GUI client port %1: %2").arg(port).arg(server.errorString()))); + qWarning("%s", qPrintable(QString("Could not open GUI client port %1: %2").arg(port).arg(server.errorString()))); return false; } qDebug() << "Listening for GUI clients on port" << server.serverPort();