Skip to content

Commit 10894b0

Browse files
committed
fix build with debug enabled
1 parent d6dfbfa commit 10894b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/irisnet/corelib/netnames.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ void ServiceResolver::start(const QString &host, quint16 port, const QString &se
11761176
void ServiceResolver::start(const QStringList &services, const QString &transport, const QString &domain, int port)
11771177
{
11781178
#ifdef NETNAMES_DEBUG
1179-
NNDEBUG << "s:" << service << "t:" << transport << "d:" << domain << "p:" << port;
1179+
NNDEBUG << "s:" << services << "t:" << transport << "d:" << domain << "p:" << port;
11801180
#endif
11811181
/* clear SRV list */
11821182
d->srvList.clear();
@@ -1254,7 +1254,7 @@ void ServiceResolver::start(const QStringList &services, const QString &transpor
12541254
void ServiceResolver::handle_host_ready(const QString &service, const QList<XMPP::NameRecord> &rl)
12551255
{
12561256
#ifdef NETNAMES_DEBUG
1257-
NNDEBUG << "hl:" << r;
1257+
NNDEBUG << "hl:" << rl;
12581258
#endif
12591259

12601260
/* cleanup resolver */

src/irisnet/noncore/cutestuff/bsocket.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class HappyEyeballsConnector : public QObject {
179179
void connectToHost(const QStringList &services, const QString &transport, const QString &domain, quint16 port)
180180
{
181181
#ifdef BS_DEBUG
182-
BSDEBUG << "s:" << service << "t:" << transport << "d:" << domain;
182+
BSDEBUG << "s:" << services << "t:" << transport << "d:" << domain;
183183
#endif
184184
// this->service = service;
185185
this->transport = transport;

0 commit comments

Comments
 (0)