aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hostcycle.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-04-17 22:36:39 +0100
committerGravatar Sadie Powell2021-04-17 22:44:13 +0100
commitd8019f87b34b4d725bd085f04c6aef0b925c9e76 (patch)
tree79c7b417dc8b53f6ad81fc0d10e4a28b9c62d8c9 /src/modules/m_hostcycle.cpp
parentLogManager does not implement fakederef in v4. (diff)
Fix various uses of the _t suffix which is reserved by POSIX.
Diffstat (limited to 'src/modules/m_hostcycle.cpp')
-rw-r--r--src/modules/m_hostcycle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_hostcycle.cpp b/src/modules/m_hostcycle.cpp
index 833d8dae9..d17f39702 100644
--- a/src/modules/m_hostcycle.cpp
+++ b/src/modules/m_hostcycle.cpp
@@ -35,8 +35,8 @@ class ModuleHostCycle : public Module
ClientProtocol::Messages::Quit quitmsg(user, reason);
ClientProtocol::Event quitevent(ServerInstance->GetRFCEvents().quit, quitmsg);
- already_sent_t silent_id = ServerInstance->Users.NextAlreadySentId();
- already_sent_t seen_id = ServerInstance->Users.NextAlreadySentId();
+ uint64_t silent_id = ServerInstance->Users.NextAlreadySentId();
+ uint64_t seen_id = ServerInstance->Users.NextAlreadySentId();
IncludeChanList include_chans(user->chans.begin(), user->chans.end());
std::map<User*,bool> exceptions;