mirror of
https://github.com/anope/anope.git
synced 2026-07-08 00:43:12 +02:00
Rewrote cs_access to be more C++ish, changed NumberList to be more C++ish and fixed some compiler warnings on 64bit systems
This commit is contained in:
@@ -179,7 +179,7 @@ class BahamutIRCdProto : public IRCDProto
|
||||
/* SGLINE */
|
||||
void SendSGLine(XLine *x)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", x->Mask.length(), x->Mask.c_str(), x->Reason.c_str());
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", static_cast<int>(x->Mask.length()), x->Mask.c_str(), x->Reason.c_str());
|
||||
}
|
||||
|
||||
/* RAKILL */
|
||||
|
||||
Reference in New Issue
Block a user