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

Alexandre Julliard julliard at wine.codeweavers.com
Fri Sep 8 10:24:35 CDT 2006


Module: wine
Branch: master
Commit: 97f85e497a97ee88ddc2ba4e46f359b49a5b7612
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=97f85e497a97ee88ddc2ba4e46f359b49a5b7612

Author: Stefan Leichter <Stefan.Leichter at 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");




More information about the wine-cvs mailing list