diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 18:49:42 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 18:49:42 +0000 |
commit | ee6087e2b463c63d58a37d0f1b611c0893fa35a5 (patch) | |
tree | 023dd19361d5fe69add80df637bcf6a2cd40ec97 | |
parent | ec1df83c875bb783ca660a1fec700983fe1d9266 (diff) |
Fix some signedness.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11857 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/users.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp index 370387df6..7952c98ac 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1401,8 +1401,8 @@ void User::DoHostCycle(const std::string &quitline) if (!ServerInstance->Config->CycleHosts) return; - int silent_id = ++uniq_id; - int seen_id = ++uniq_id; + unsigned int silent_id = ++uniq_id; + unsigned int seen_id = ++uniq_id; if (!already_sent) InitializeAlreadySent(ServerInstance->SE); |