diff options
| author | 2021-04-17 22:36:39 +0100 | |
|---|---|---|
| committer | 2021-04-17 22:44:13 +0100 | |
| commit | d8019f87b34b4d725bd085f04c6aef0b925c9e76 (patch) | |
| tree | 79c7b417dc8b53f6ad81fc0d10e4a28b9c62d8c9 /src/users.cpp | |
| parent | LogManager does not implement fakederef in v4. (diff) | |
Fix various uses of the _t suffix which is reserved by POSIX.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index cafc4204c..83b28ffa1 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -914,7 +914,7 @@ void User::ForEachNeighbor(ForEachNeighborHandler& handler, bool include_self) FOREACH_MOD(OnBuildNeighborList, (this, include_chans, exceptions)); // Get next id, guaranteed to differ from the already_sent field of all users - const already_sent_t newid = ServerInstance->Users.NextAlreadySentId(); + const uint64_t newid = ServerInstance->Users.NextAlreadySentId(); // Handle exceptions first for (std::map<User*, bool>::const_iterator i = exceptions.begin(); i != exceptions.end(); ++i) |
