From af32568eb9ce547a4005b94c44f2b12facf14442 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Wed, 30 Jan 2019 12:51:35 -0700 Subject: [PATCH] iterator is a pointer --- QnetGateway.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetGateway.cpp b/QnetGateway.cpp index 3c81852..b7a5862 100644 --- a/QnetGateway.cpp +++ b/QnetGateway.cpp @@ -422,7 +422,7 @@ void CQnetGateway::GetIRCDataThread() if (doFind) { printf("Finding Routes for...\n"); for (auto it=findRoute.begin(); it!=findRoute.end(); it++) { - printf("\t%s\n", *it.c_str()); + printf("\t%s\n", it->c_str()); ii->findUser(*it); } doFind = false;