ws2_32/tests: Avoid size_t in a trace.

This commit is contained in:
Alexandre Julliard 2010-12-09 17:46:13 +01:00
parent b012ffba58
commit f89d80c276
1 changed files with 1 additions and 1 deletions

View File

@ -1237,7 +1237,7 @@ static void test_ip_pktinfo(void)
ok(strncmp(iovec[0].buf, msg, sizeof(msg)) == 0, ok(strncmp(iovec[0].buf, msg, sizeof(msg)) == 0,
"WSARecvMsg() buffer does not match transmitted data!\n"); "WSARecvMsg() buffer does not match transmitted data!\n");
ok(hdr.Control.len == IP_PKTINFO_LEN, ok(hdr.Control.len == IP_PKTINFO_LEN,
"WSARecvMsg() control length mismatch (%d != %d).\n", hdr.Control.len, IP_PKTINFO_LEN); "WSARecvMsg() control length mismatch (%d).\n", hdr.Control.len);
/* Test for the expected IP_PKTINFO return information. */ /* Test for the expected IP_PKTINFO return information. */
foundhdr = FALSE; foundhdr = FALSE;