Network/SocketImpl: Okay, I promise to try to compile myself next time

This commit is contained in:
Lynix 2017-01-27 16:49:09 +01:00
parent 80442924c1
commit 42d5f849f7
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ namespace Nz
msgHdr.msg_iov = sysBuffers; msgHdr.msg_iov = sysBuffers;
msgHdr.msg_iovlen = static_cast<int>(bufferCount); msgHdr.msg_iovlen = static_cast<int>(bufferCount);
int byteSent = sendmsg(socket, &msgHdr, MSG_NOSIGNAL); int byteSent = sendmsg(handle, &msgHdr, MSG_NOSIGNAL);
if (byteSent == SOCKET_ERROR) if (byteSent == SOCKET_ERROR)
{ {
int errorCode = GetLastErrorCode(); int errorCode = GetLastErrorCode();