diff options
author | Adam <adam@adam-laptop.(none)> | 2010-05-27 19:41:16 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:04:08 -0400 |
commit | c43666e344250e4d559d116a73a9d4a313cf1645 (patch) | |
tree | df06942944601aa76065aae0be48ccee432ace46 /src/protocol/bahamut.cpp | |
parent | 1394c96173cec02d148dfece563bb186cf2f33b6 (diff) |
Rewrote cs_access to be more C++ish, changed NumberList to be more C++ish and fixed some compiler warnings on 64bit systems
Diffstat (limited to 'src/protocol/bahamut.cpp')
-rw-r--r-- | src/protocol/bahamut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/bahamut.cpp b/src/protocol/bahamut.cpp index 040144737..d55a08123 100644 --- a/src/protocol/bahamut.cpp +++ b/src/protocol/bahamut.cpp @@ -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 */ |