1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 01:26:38 +02:00

Use more appropriate types for MaxUserCount and OperCount.

This commit is contained in:
Sadie Powell
2025-05-10 00:59:20 +01:00
parent ce0982cc4a
commit 49f93b7670
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -25,8 +25,8 @@
user_map UserListByNick, UserListByUID;
int OperCount = 0;
unsigned MaxUserCount = 0;
size_t OperCount = 0;
size_t MaxUserCount = 0;
time_t MaxUserTime = 0;
std::list<User *> User::quitting_users;