Commit ca02b8e4 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ws2_32/tests: Use closesocket(), not close().

parent 5dc0b0ef
......@@ -4904,9 +4904,9 @@ static void test_accept_inheritance(void)
ok(linger.l_onoff == 1, "got on/off %u\n", linger.l_onoff);
ok(linger.l_linger == 555, "got linger %u\n", linger.l_onoff);
close(server);
close(client);
close(listener);
closesocket(server);
closesocket(client);
closesocket(listener);
}
static void test_extendedSocketOptions(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment