From 89537ed2ab22fcedb25e0378bd2c18e392911c0c Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 29 Sep 2022 12:01:29 +0100 Subject: Fix various cases of the &* being next to the name instead of type. --- src/modules/m_callerid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_callerid.cpp') 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; -- cgit v1.3.1-10-gc9f91