From 49f93b7670625d03a6c9b41323298ab243dfe01f Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 10 May 2025 00:59:20 +0100 Subject: Use more appropriate types for MaxUserCount and OperCount. --- include/users.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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_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. */ -- cgit