summaryrefslogtreecommitdiffstats
path: root/src/network/kernel
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@digia.com>2014-02-26 08:50:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-26 12:58:00 +0100
commit5ce87f07821257891ee66d4d3232f1e010f8c171 (patch)
treedc3cdf72361e982d5cc1178cb3a51c9d3063e7f0 /src/network/kernel
parent24f10256631cd1e0f461430a50be36b74f19e01e (diff)
Fix compile error when enabling the QHOSTINFO_DEBUG define
Change-Id: Id82b3aad3b2951e6d0dee57ac993535930db31fc Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
Diffstat (limited to 'src/network/kernel')
-rw-r--r--src/network/kernel/qhostinfo_win.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/network/kernel/qhostinfo_win.cpp b/src/network/kernel/qhostinfo_win.cpp
index 570d1a82ea..cbaa9bec6a 100644
--- a/src/network/kernel/qhostinfo_win.cpp
+++ b/src/network/kernel/qhostinfo_win.cpp
@@ -134,8 +134,8 @@ QHostInfo QHostInfoAgent::fromName(const QString &hostName)
QHostInfo results;
#if defined(QHOSTINFO_DEBUG)
- qDebug("QHostInfoAgent::fromName(%p): looking up \"%s\" (IPv6 support is %s)",
- this, hostName.toLatin1().constData(),
+ qDebug("QHostInfoAgent::fromName(): looking up \"%s\" (IPv6 support is %s)",
+ hostName.toLatin1().constData(),
(local_getaddrinfo && local_freeaddrinfo) ? "enabled" : "disabled");
#endif
@@ -248,8 +248,8 @@ QHostInfo QHostInfoAgent::fromName(const QString &hostName)
#if defined(QHOSTINFO_DEBUG)
if (results.error() != QHostInfo::NoError) {
- qDebug("QHostInfoAgent::run(%p): error (%s)",
- this, results.errorString().toLatin1().constData());
+ qDebug("QHostInfoAgent::run(): error (%s)",
+ results.errorString().toLatin1().constData());
} else {
QString tmp;
QList<QHostAddress> addresses = results.addresses();
@@ -257,8 +257,8 @@ QHostInfo QHostInfoAgent::fromName(const QString &hostName)
if (i != 0) tmp += ", ";
tmp += addresses.at(i).toString();
}
- qDebug("QHostInfoAgent::run(%p): found %i entries: {%s}",
- this, addresses.count(), tmp.toLatin1().constData());
+ qDebug("QHostInfoAgent::run(): found %i entries: {%s}",
+ addresses.count(), tmp.toLatin1().constData());
}
#endif
return results;