summaryrefslogtreecommitdiff
path: root/src/core/os_help.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 16:17:16 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 16:17:16 +0000
commitfe39b96db7735ceb243f1f09e3d41633d803445f (patch)
treefc52494d6f235aa3bcf7b0e4ebe89726e60e5c21 /src/core/os_help.c
parente225e7e6286adafb7c720e7718cd758556be352e (diff)
Fix modules to use the right type (CommandReturn, not CommandResult)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1977 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/os_help.c')
-rw-r--r--src/core/os_help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/os_help.c b/src/core/os_help.c
index b2624de37..d7ddb666e 100644
--- a/src/core/os_help.c
+++ b/src/core/os_help.c
@@ -22,7 +22,7 @@ class CommandOSHelp : public Command
{
}
- CommandResult Execute(User *u, std::vector<std::string> &params)
+ CommandReturn Execute(User *u, std::vector<std::string> &params)
{
mod_help_cmd(s_OperServ, u, OPERSERV, params[0].c_str());
return MOD_CONT;