summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-24 18:05:44 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-24 18:05:44 +0000
commit58e4aa3a8c0ac57ee2336883077cf5b0aff77c9c (patch)
treec2cc2f862ea2ca7fcc12843413570ef983005f8d /src
parent2ab88037d8d7d6df3fb9686216a0b36f5ece2313 (diff)
Pedantic safety
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8350 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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 0c3f29a25..d63e3938f 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -219,7 +219,7 @@ CmdResult CommandParser::CallHandler(const std::string &commandname,const char**
void CommandParser::DoLines(User* current, bool one_only)
{
// while there are complete lines to process...
- int floodlines = 0;
+ unsigned int floodlines = 0;
while (current->BufferIsReady())
{