From e8c617b7749a18b353290471491e23b0573ebd7c Mon Sep 17 00:00:00 2001 From: danieldg Date: Sat, 16 Jan 2010 19:45:16 +0000 Subject: Fix signdedness error in LoopCall git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12268 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/command_parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/command_parse.h b/include/command_parse.h index ac401ff67..2b03ec9bd 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -105,7 +105,7 @@ class CoreExport CommandParser * @return This function will return 1 when there are no more parameters to process. When this occurs, its * caller should return without doing anything, otherwise it should continue into its main section of code. */ - int LoopCall(User* user, Command* CommandObj, const std::vector& parameters, unsigned int splithere, unsigned int extra = -1, bool usemax = true); + int LoopCall(User* user, Command* CommandObj, const std::vector& parameters, unsigned int splithere, int extra = -1, bool usemax = true); /** Take a raw input buffer from a recvq, and process it on behalf of a user. * @param buffer The buffer line to process -- cgit v1.2.3