Eric Pouech : wininet/tests: Simplify printf for 64 bit integers.

Alexandre Julliard julliard at winehq.org
Mon Apr 11 15:54:58 CDT 2022


Module: wine
Branch: master
Commit: 17795f0796f2342918ff6efc145c9134e13a4874
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=17795f0796f2342918ff6efc145c9134e13a4874

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Mon Apr 11 09:43:51 2022 +0200

wininet/tests: Simplify printf for 64 bit integers.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wininet/tests/http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c
index 98d1b74ca85..80b3160820b 100644
--- a/dlls/wininet/tests/http.c
+++ b/dlls/wininet/tests/http.c
@@ -6173,7 +6173,7 @@ static void test_large_content(int port)
     ok(GetLastError() == ERROR_HTTP_INVALID_HEADER,
         "expected ERROR_HTTP_INVALID_HEADER, got %lx\n", GetLastError());
     ok(sizelen == sizeof(DWORD64), "sizelen %lu\n", sizelen);
-    ok(len64 == ~0, "len64 %lx%08lx\n", (DWORD)(len64 >> 32), (DWORD)len64);
+    ok(len64 == ~0, "len64 %I64x\n", len64);
 
     close_request(&req);
 




More information about the wine-cvs mailing list