Fix type conversion warning in netconsole tool

This commit is contained in:
Kawe Mazidjatari 2023-04-03 14:51:18 +02:00
parent a79ed2f52f
commit a857403b9e

View File

@ -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());