ntdll: Print 64bit integers with wine_dbgstr_longlong.

This commit is contained in:
Stefan Leichter 2006-08-24 21:54:50 +02:00 committed by Alexandre Julliard
parent fb7646beaa
commit 4746a63e22

View file

@ -595,7 +595,7 @@ NTSTATUS WINAPI RtlVerifyVersionInfo( const RTL_OSVERSIONINFOEXW *info,
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;