Alexandre Julliard : ws2_32/tests: Avoid size_t in a trace.

Alexandre Julliard julliard at winehq.org
Thu Dec 9 12:26:32 CST 2010


Module: wine
Branch: master
Commit: f89d80c27694219624ae5f32cd25015ae9822e9c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f89d80c27694219624ae5f32cd25015ae9822e9c

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Dec  9 17:46:13 2010 +0100

ws2_32/tests: Avoid size_t in a trace.

---

 dlls/ws2_32/tests/sock.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c
index 528c657..1b81544 100644
--- a/dlls/ws2_32/tests/sock.c
+++ b/dlls/ws2_32/tests/sock.c
@@ -1237,7 +1237,7 @@ static void test_ip_pktinfo(void)
         ok(strncmp(iovec[0].buf, msg, sizeof(msg)) == 0,
            "WSARecvMsg() buffer does not match transmitted data!\n");
         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. */
         foundhdr = FALSE;




More information about the wine-cvs mailing list