Updated ws2_32-SIO_IDEAL_SEND_BACKLOG_QUERY patchset

Warning fixes.
This commit is contained in:
Alistair Leslie-Hughes 2022-03-16 12:10:30 +11:00
parent 6efbf2e5b5
commit 191f951992

View File

@ -111,7 +111,7 @@ index b38357954b7..89a86cc3aa4 100644
+ iret = WSAIoctl(src, SIO_IDEAL_SEND_BACKLOG_QUERY, NULL, 0, &backlog, sizeof(backlog), &size, NULL, NULL);
+ ok(!iret, "WSAIoctl() failed: %d/%d\n", iret, WSAGetLastError());
+ ok(backlog == 0x10000, "got %08x\n", backlog);
+ ok(backlog == 0x10000, "got %08lx\n", backlog);
+
end:
if (server != INVALID_SOCKET)