diff options
| author | 2022-09-29 12:01:29 +0100 | |
|---|---|---|
| committer | 2022-09-29 12:36:01 +0100 | |
| commit | 89537ed2ab22fcedb25e0378bd2c18e392911c0c (patch) | |
| tree | 4cdea30cb16c0a044d80ba4bab8ef9a645c90824 /src/modules/m_callerid.cpp | |
| parent | Use NOMINMAX on Windows and undefine error in the log header. (diff) | |
Fix various cases of the &* being next to the name instead of type.
Diffstat (limited to 'src/modules/m_callerid.cpp')
| -rw-r--r-- | src/modules/m_callerid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index 3503b3554..04e5c54c6 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -113,7 +113,7 @@ struct CallerIDExtInfo final while (s.GetToken(tok)) { - User *u = ServerInstance->Users.Find(tok); + User* u = ServerInstance->Users.Find(tok); if ((u) && (u->registered == REG_ALL) && (!u->quitting)) { if (dat->accepting.insert(u).second) @@ -317,7 +317,7 @@ public: } // Look up their list to remove me. - callerid_data *dat2 = extInfo.Get(whotoremove, false); + callerid_data* dat2 = extInfo.Get(whotoremove, false); if (!dat2) { // How the fuck is this possible. @@ -373,7 +373,7 @@ private: void RemoveFromAllAccepts(User* who) { // First, find the list of people who have me on accept - callerid_data *userdata = cmd.extInfo.Get(who, false); + callerid_data* userdata = cmd.extInfo.Get(who, false); if (!userdata) return; |
