Stefan Leichter : ntdll: Print 64bit integers with wine_dbgstr_longlong.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Aug 25 05:26:48 CDT 2006


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

Author: Stefan Leichter <Stefan.Leichter at camline.com>
Date:   Thu Aug 24 21:54:50 2006 +0200

ntdll: Print 64bit integers with wine_dbgstr_longlong.

---

 dlls/ntdll/version.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/version.c b/dlls/ntdll/version.c
index 81127f8..2feac69 100644
--- a/dlls/ntdll/version.c
+++ b/dlls/ntdll/version.c
@@ -595,7 +595,7 @@ NTSTATUS WINAPI RtlVerifyVersionInfo( co
     RTL_OSVERSIONINFOEXW ver;
     NTSTATUS status;
 
-    TRACE("(%p,0x%lx,0x%llx)\n", info, dwTypeMask, dwlConditionMask);
+    TRACE("(%p,0x%lx,0x%s)\n", info, dwTypeMask, wine_dbgstr_longlong(dwlConditionMask));
 
     ver.dwOSVersionInfoSize = sizeof(ver);
     if ((status = RtlGetVersion( &ver )) != STATUS_SUCCESS) return status;




More information about the wine-cvs mailing list