diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 16:17:16 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 16:17:16 +0000 |
commit | fe39b96db7735ceb243f1f09e3d41633d803445f (patch) | |
tree | fc52494d6f235aa3bcf7b0e4ebe89726e60e5c21 /src/core/cs_suspend.c | |
parent | e225e7e6286adafb7c720e7718cd758556be352e (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/cs_suspend.c')
-rw-r--r-- | src/core/cs_suspend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cs_suspend.c b/src/core/cs_suspend.c index a6d248801..c17a19f02 100644 --- a/src/core/cs_suspend.c +++ b/src/core/cs_suspend.c @@ -24,7 +24,7 @@ class CommandCSSuspend : public Command { } - CommandResult Execute(User *u, std::vector<std::string> ¶ms) + CommandReturn Execute(User *u, std::vector<std::string> ¶ms) { ChannelInfo *ci; char *chan = params[0].c_str(); @@ -126,7 +126,7 @@ class CommandCSUnSuspend : public Command { } - CommandResult Execute(User *u, std::vector<std::string> ¶ms) + CommandReturn Execute(User *u, std::vector<std::string> ¶ms) { ChannelInfo *ci; const char *chan = params[0].c_str(); |