From 97f85e497a97ee88ddc2ba4e46f359b49a5b7612 Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Fri, 8 Sep 2006 10:49:16 +0200 Subject: [PATCH] ntdll/tests: Print 64bit integers as two 32 bit integers. --- dlls/ntdll/tests/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/info.c b/dlls/ntdll/tests/info.c index a6473019785..72f3dd98fa8 100644 --- a/dlls/ntdll/tests/info.c +++ b/dlls/ntdll/tests/info.c @@ -650,7 +650,7 @@ static void test_query_process_io(void) ok( sizeof(pii) == ReturnLength, "Inconsistent length %ld\n", ReturnLength); /* Check if we have some return values */ - trace("OtherOperationCount : %lld\n", pii.OtherOperationCount); + trace("OtherOperationCount : 0x%lx%08lx\n", (DWORD)(pii.OtherOperationCount >> 32), (DWORD)pii.OtherOperationCount); todo_wine { ok( pii.OtherOperationCount > 0, "Expected an OtherOperationCount > 0\n");