wininet/tests: Simplify printf for 64 bit integers.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-04-11 09:43:51 +02:00 committed by Alexandre Julliard
parent cec5fea60d
commit 17795f0796
1 changed files with 1 additions and 1 deletions

View File

@ -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);