summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar brain2008-04-20 21:27:21 +0000
committerGravatar brain2008-04-20 21:27:21 +0000
commit4f19cd84743fadc694fb6ace32c6a79fe0d2d85c (patch)
treea17bd427e0438db05fe6ac1ca3b21083017c77fe /src/command_parse.cpp
parentAdd /MP for faster build of core parts (not modules or command handlers) (diff)
Fix a bad return value
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@9559 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 7a5df7d09..597aa982a 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -388,7 +388,7 @@ void CommandParser::RemoveCommands(const char* source)
i++;
RemoveCommand(safei, source);
}
- return true;
+ return;
}
void CommandParser::RemoveCommand(command_table::iterator safei, const char* source)