diff options
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 77c2c72b3..631d4920c 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -815,12 +815,12 @@ void InspIRCd::DoOneIteration(bool process_module_sockets) if ((s) && (!s->Poll())) { - log(DEBUG,"inspircd.cpp: Socket poll returned false, close and bail"); + log(DEBUG,"Socket poll returned false, close and bail"); SE->DelFd(s->GetFd()); socket_ref[activefds[activefd]] = NULL; for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++) { - s_del = (InspSocket*)*a; + s_del = *a; if ((s_del) && (s_del->GetFd() == activefds[activefd])) { module_sockets.erase(a); |