Module: wine Branch: master Commit: 97f85e497a97ee88ddc2ba4e46f359b49a5b7612 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=97f85e497a97ee88ddc2ba4e...
Author: Stefan Leichter Stefan.Leichter@camline.com Date: Fri Sep 8 10:49:16 2006 +0200
ntdll/tests: Print 64bit integers as two 32 bit integers.
---
dlls/ntdll/tests/info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/tests/info.c b/dlls/ntdll/tests/info.c index a647301..72f3dd9 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");