QmlProfiler: Fix compiler warning

Fix "format ‘%d’ expects type ‘int’, but argument 3 has type ‘quint64’"
This commit is contained in:
Kai Koehne
2011-04-15 08:55:55 +02:00
parent 2db5b26087
commit 881193b19e

View File

@@ -304,7 +304,7 @@ void QmlProfilerTool::connectToClient()
if (!d->m_client || d->m_client->state() != QAbstractSocket::UnconnectedState)
return;
if (QmlProfilerPlugin::debugOutput)
qWarning("QmlProfiler: Connecting to %s:%d ...", qPrintable(d->m_host), d->m_port);
qWarning("QmlProfiler: Connecting to %s:%lld ...", qPrintable(d->m_host), d->m_port);
d->m_client->connectToHost(d->m_host, d->m_port);