summaryrefslogtreecommitdiff
path: root/src/modules/cs_appendtopic.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/modules/cs_appendtopic.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/modules/cs_appendtopic.c')
-rw-r--r--src/modules/cs_appendtopic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_appendtopic.c b/src/modules/cs_appendtopic.c
index 06860d18b..7c0144e5b 100644
--- a/src/modules/cs_appendtopic.c
+++ b/src/modules/cs_appendtopic.c
@@ -62,7 +62,7 @@ class CSAppendTopic : public Module
moduleAddAuthor(AUTHOR);
moduleAddVersion(VERSION);
- moduleSetType(SUPPORTED);
+ moduleSetType(this, SUPPORTED);
c = createCommand("APPENDTOPIC", my_cs_appendtopic, NULL, -1, -1, -1, -1, -1);
moduleAddCommand(CHANSERV, c, MOD_HEAD);