Commit 17795f07 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

wininet/tests: Simplify printf for 64 bit integers.

parent cec5fea6
......@@ -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);
......
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