diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-07 21:19:12 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-07 21:19:12 +0000 |
commit | 597fabb9dccc8fa963e819182ca3303590fd2d3c (patch) | |
tree | fb5dca2899fd1ecfd1098c387a093c776061e449 /src | |
parent | c149dfa1e9b8ec034805d9a2cc0701cb15251c7e (diff) |
oChanged name of variable in OnCleanup
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2261 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 6e553167e..2a01f8761 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -385,7 +385,7 @@ void Module::OnDelZLine(userrec* source, std::string ipmask) { }; void Module::OnDelKLine(userrec* source, std::string hostmask) { }; void Module::OnDelQLine(userrec* source, std::string nickmask) { }; void Module::OnDelELine(userrec* source, std::string hostmask) { }; -void Module::OnCleanup(int target_type, void* source) { }; +void Module::OnCleanup(int target_type, void* item) { }; /* server is a wrapper class that provides methods to all of the C-style * exports in the core |