forked from qt-creator/qt-creator
QmlProfiler: Fix compiler warning
Fix "format ‘%d’ expects type ‘int’, but argument 3 has type ‘quint64’"
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user