summaryrefslogtreecommitdiff
path: root/src/core/cs_help.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 00:34:29 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 00:34:29 +0000
commitd18d3f094cddedc6e6363f616eedb909eb02016a (patch)
tree0fafab8f507646bd3a5d6d49e525bda7d4ac64ed /src/core/cs_help.c
parentb8c04482bbbe531e48bb1328d17db8acb1e323a0 (diff)
Convert moduleSetType() to not require a module pointer.. actually, this is probably the wrong way to go about this (we should use a member func),
but who cares for now. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1580 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_help.c')
-rw-r--r--src/core/cs_help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_help.c b/src/core/cs_help.c
index bfded62fc..3b8c7b873 100644
--- a/src/core/cs_help.c
+++ b/src/core/cs_help.c
@@ -26,7 +26,7 @@ class CSHelp : public Module
moduleAddAuthor("Anope");
moduleAddVersion("$Id$");
- moduleSetType(CORE);
+ moduleSetType(this, CORE);
c = createCommand("HELP", do_help, NULL, -1, -1, -1, -1, -1);
moduleAddCommand(CHANSERV, c, MOD_UNIQUE);