mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[USER32]
* Fix some print specifiers. svn path=/trunk/; revision=59898
This commit is contained in:
parent
baeeaa9cf5
commit
8e8e30befe
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ VOID
|
||||||
WINAPI
|
WINAPI
|
||||||
SetDebugErrorLevel( DWORD dwLevel )
|
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") );
|
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
|
||||||
|
|
Loading…
Reference in a new issue