mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix type conversion warning in netconsole tool
This commit is contained in:
parent
a79ed2f52f
commit
a857403b9e
@ -288,7 +288,7 @@ void CNetCon::Disconnect(void)
|
||||
void CNetCon::Send(const std::string& svMessage) const
|
||||
{
|
||||
std::ostringstream ssSendBuf;
|
||||
const u_long nLen = htonl(svMessage.size());
|
||||
const u_long nLen = htonl(u_long(svMessage.size()));
|
||||
|
||||
ssSendBuf.write(reinterpret_cast<const char*>(&nLen), sizeof(u_long));
|
||||
ssSendBuf.write(svMessage.data(), svMessage.size());
|
||||
|
Loading…
x
Reference in New Issue
Block a user