mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
[USER32]
* Fix some print specifiers. svn path=/trunk/; revision=59898
This commit is contained in:
@@ -41,7 +41,7 @@ VOID
|
||||
WINAPI
|
||||
SetDebugErrorLevel( DWORD dwLevel )
|
||||
{
|
||||
DbgPrint("(%ld): stub\n", dwLevel);
|
||||
DbgPrint("(%lu): stub\n", dwLevel);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -285,7 +285,7 @@ static const WORD *DIALOG_GetControl32( const WORD *p, DLG_CONTROL_INFO *info,
|
||||
info->windowName = HeapAlloc( GetProcessHeap(), 0, sizeof(L"#65535") );
|
||||
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;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user