summaryrefslogtreecommitdiff
path: root/include/users.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-10 00:59:20 +0100
committerSadie Powell <sadie@witchery.services>2025-05-10 00:59:20 +0100
commit49f93b7670625d03a6c9b41323298ab243dfe01f (patch)
treee2991ea369766a8bfae6082b2526f26f7ad2e8aa /include/users.h
parentce0982cc4a6d9733f506b56d435d2346071528e6 (diff)
Use more appropriate types for MaxUserCount and OperCount.
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/users.h b/include/users.h
index 168b8e4f4..cfb472140 100644
--- a/include/users.h
+++ b/include/users.h
@@ -23,8 +23,8 @@ typedef Anope::unordered_map<User *> user_map;
extern CoreExport user_map UserListByNick, UserListByUID;
-extern CoreExport int OperCount;
-extern CoreExport unsigned MaxUserCount;
+extern CoreExport size_t OperCount;
+extern CoreExport size_t MaxUserCount;
extern CoreExport time_t MaxUserTime;
/* Online user and channel data. */