* Fix some print specifiers.

svn path=/trunk/; revision=59898
This commit is contained in:
Amine Khaldi 2013-08-30 10:25:16 +00:00
parent baeeaa9cf5
commit 8e8e30befe
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ VOID
WINAPI WINAPI
SetDebugErrorLevel( DWORD dwLevel ) SetDebugErrorLevel( DWORD dwLevel )
{ {
DbgPrint("(%ld): stub\n", dwLevel); DbgPrint("(%lu): stub\n", dwLevel);
} }

View file

@ -285,7 +285,7 @@ static const WORD *DIALOG_GetControl32( const WORD *p, DLG_CONTROL_INFO *info,
info->windowName = HeapAlloc( GetProcessHeap(), 0, sizeof(L"#65535") ); info->windowName = HeapAlloc( GetProcessHeap(), 0, sizeof(L"#65535") );
if (info->windowName != NULL) if (info->windowName != NULL)
{ {
wsprintf((LPWSTR)info->windowName, L"#%d", GET_WORD(p + 1)); wsprintf((LPWSTR)info->windowName, L"#%u", GET_WORD(p + 1));
info->windowNameFree = TRUE; info->windowNameFree = TRUE;
} }
else else