ntdll/tests: Print 64bit integers as two 32 bit integers.

This commit is contained in:
Stefan Leichter 2006-09-08 10:49:16 +02:00 committed by Alexandre Julliard
parent 0fc2bd760c
commit 97f85e497a
1 changed files with 1 additions and 1 deletions

View File

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