Network: Fix compilation under Linux (fix merge)

This commit is contained in:
Jérôme Leclercq 2021-05-19 20:54:10 +02:00
parent 35060ab24e
commit 031e52b63f
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ namespace Nz
return SocketState_Connected;
else
{
NazaraWarning("Socket " + String::Number(handle) + " was returned by poll without POLLOUT nor error events (events: 0x" + String::Number(descriptor.revents, 16) + ')');
NazaraWarning("Socket " + std::to_string(handle) + " was returned by poll without POLLOUT nor error events (events: 0x" + NumberToString(descriptor.revents, 16) + ')');
return SocketState_NotConnected;
}
}