From 6dfd0aff121d5f4b8e66b35243f04cb1434d838b Mon Sep 17 00:00:00 2001 From: Roland Rossgotterer Date: Mon, 25 Feb 2019 11:16:45 +0100 Subject: [PATCH] Fix gcc warning --- src/plugins/simulator/fs9/lobbyclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/simulator/fs9/lobbyclient.cpp b/src/plugins/simulator/fs9/lobbyclient.cpp index 147ed2600..00abd9ee0 100644 --- a/src/plugins/simulator/fs9/lobbyclient.cpp +++ b/src/plugins/simulator/fs9/lobbyclient.cpp @@ -312,7 +312,7 @@ namespace BlackSimPlugin case DPLSESSION_HOSTMIGRATEDHERE: message.append("Host migrated to this client"); break; default: - message.append("%1").arg(pStatusMsg->dwStatus); + message.append(QString("Unknown PDPL_MESSAGE_SESSION_STATUS: %1").arg(pStatusMsg->dwStatus)); break; } qDebug() << message;