diff options
| author | 2008-04-20 21:27:21 +0000 | |
|---|---|---|
| committer | 2008-04-20 21:27:21 +0000 | |
| commit | 4f19cd84743fadc694fb6ace32c6a79fe0d2d85c (patch) | |
| tree | a17bd427e0438db05fe6ac1ca3b21083017c77fe /src/command_parse.cpp | |
| parent | Add /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.cpp | 2 |
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) |
