Skip to content

Commit

Permalink
Fix a bad return value
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@9559 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Apr 20, 2008
1 parent 0500228 commit 4f19cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command_parse.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit 4f19cd8

Please sign in to comment.