From 2415d071e1f29916bdff82318d480effac9a5c70 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 9 Jan 2006 22:09:58 +0000 Subject: Missing classname git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2761 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 2 +- src/modules.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 7ccbef91d..8f5c997ed 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -289,7 +289,7 @@ void InspIRCd::MoveTo(std::string modulename,int slot) break; } } - if (v2 == slot) + if (v2 == (unsigned int)slot) { log(DEBUG,"Item %s already in slot %d!",modulename.c_str(),slot); } diff --git a/src/modules.cpp b/src/modules.cpp index b8b17aa93..ebb8e3550 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -298,7 +298,7 @@ void Module::OnDelQLine(userrec* source, std::string nickmask) { }; void Module::OnDelELine(userrec* source, std::string hostmask) { }; void Module::OnCleanup(int target_type, void* item) { }; void Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; }; -Priority Prioritize() { return PRIORITY_DONTCARE; } +Priority Modules::Prioritize() { return PRIORITY_DONTCARE; } /* server is a wrapper class that provides methods to all of the C-style * exports in the core -- cgit v1.2.3