diff options
author | Adam <Adam@anope.org> | 2017-10-08 12:46:05 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-10-08 12:46:05 -0400 |
commit | 50f7429fda7cb3ffd8c34abb0a13f3dcc929f2ed (patch) | |
tree | e8e65cb6e1fed5aebf0b252954e9f40747ac7f4a /modules/hostserv/request.cpp | |
parent | 1e52b087139ceb33b114a7fa20a2c6d3d453d371 (diff) |
Fix some compiler warnings
Diffstat (limited to 'modules/hostserv/request.cpp')
-rw-r--r-- | modules/hostserv/request.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/hostserv/request.cpp b/modules/hostserv/request.cpp index 596a0050e..3df0f1e97 100644 --- a/modules/hostserv/request.cpp +++ b/modules/hostserv/request.cpp @@ -67,9 +67,9 @@ NickServ::Account *HostRequest::GetAccount() return Get(&HostRequestType::acc); } -void HostRequest::SetAccount(NickServ::Account *acc) +void HostRequest::SetAccount(NickServ::Account *a) { - Set(&HostRequestType::acc, acc); + Set(&HostRequestType::acc, a); } Anope::string HostRequest::GetIdent() |