summaryrefslogtreecommitdiff
path: root/modules/core/os_noop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/os_noop.cpp')
-rw-r--r--modules/core/os_noop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/os_noop.cpp b/modules/core/os_noop.cpp
index 56b69fcb7..32b03f63b 100644
--- a/modules/core/os_noop.cpp
+++ b/modules/core/os_noop.cpp
@@ -38,7 +38,7 @@ class CommandOSNOOP : public Command
u->SendMessage(OperServ, OPER_NOOP_SET, server.c_str());
/* Kill all the IRCops of the server */
- for (patricia_tree<User>::const_iterator it = UserListByNick.begin(), it_end = UserListByNick.end(); it != it_end; ++it)
+ for (patricia_tree<User *>::const_iterator it = UserListByNick.begin(), it_end = UserListByNick.end(); it != it_end; ++it)
{
User *u2 = *it;
++it;