Module: wine Branch: master Commit: 2c0b24b6705c4c48167886fe5b9bb6db3a370220 URL: https://source.winehq.org/git/wine.git/?a=commit;h=2c0b24b6705c4c48167886fe5...
Author: Eric Pouech eric.pouech@gmail.com Date: Thu Mar 10 08:47:52 2022 +0100
ws2_32/tests: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index a0bbde875d3..38c8b65ccdb 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -2633,7 +2633,7 @@ static void test_WSASocket(void) int wsaproviders[] = {IPPROTO_TCP, IPPROTO_IP}; int autoprotocols[] = {IPPROTO_TCP, IPPROTO_UDP}; int items, err, size, socktype, i, j; - UINT pi_size; + DWORD pi_size;
static const struct {