diff options
author | Sadie Powell <sadie@witchery.services> | 2023-11-16 21:49:48 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-11-16 21:49:48 +0000 |
commit | 70d72b62df3045590297eceba5649b8417dc3f4a (patch) | |
tree | 2f2d10eb8c1d8207d0fe8b8e27cd90b3d7b76908 /include/anope.h | |
parent | 46209895e3f46f183a293fe26e26bdfdc2423e8d (diff) |
Avoid needing to cast CurrentUplink by changing it to a size_t.
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/anope.h b/include/anope.h index 22094cf1d..4a2c1074e 100644 --- a/include/anope.h +++ b/include/anope.h @@ -384,7 +384,7 @@ namespace Anope /** The uplink we are currently connected to */ - extern CoreExport int CurrentUplink; + extern CoreExport size_t CurrentUplink; /** Various methods to determine the Anope version running */ |