Commit 4746a63e authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

ntdll: Print 64bit integers with wine_dbgstr_longlong.

parent fb7646be
...@@ -595,7 +595,7 @@ NTSTATUS WINAPI RtlVerifyVersionInfo( const RTL_OSVERSIONINFOEXW *info, ...@@ -595,7 +595,7 @@ NTSTATUS WINAPI RtlVerifyVersionInfo( const RTL_OSVERSIONINFOEXW *info,
RTL_OSVERSIONINFOEXW ver; RTL_OSVERSIONINFOEXW ver;
NTSTATUS status; 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); ver.dwOSVersionInfoSize = sizeof(ver);
if ((status = RtlGetVersion( &ver )) != STATUS_SUCCESS) return status; if ((status = RtlGetVersion( &ver )) != STATUS_SUCCESS) return status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment