diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-13 16:55:44 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-13 16:55:44 +0000 |
commit | a8b888e16ec442bdb65250e371497f47f75af686 (patch) | |
tree | 8491061d1b611ab67608ad5ab88ef9c4ca6ffb0a /src | |
parent | 800d33db4fb4191d891a9d102ce39d37170666ff (diff) |
Fixed minor warning
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2371 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index f5728acde..ebd127556 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -675,7 +675,7 @@ bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); kill_link(alive,message.c_str()); fd_ref_table[zombie->fd] = zombie; - for (int i = 0; i < zombie->chans.size(); i++) + for (unsigned int i = 0; i < zombie->chans.size(); i++) { if (zombie->chans[i].channel != NULL) { |