diff options
-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); |