mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[WINESYNC] setupapi: Win64 printf format warning fixes.
wine commit id 79ecfaf52f1c552c9f43c636e0133fe0b4d5e6c5 by Michael Stefaniuc <mstefani@redhat.de>
This commit is contained in:
parent
21cc2ec468
commit
9e97d9f995
2 changed files with 3 additions and 3 deletions
|
@ -162,7 +162,7 @@ VOID WINAPI MyFree(LPVOID lpMem)
|
|||
*/
|
||||
LPVOID WINAPI MyMalloc(DWORD dwSize)
|
||||
{
|
||||
TRACE("%lu\n", dwSize);
|
||||
TRACE("%u\n", dwSize);
|
||||
return HeapAlloc(GetProcessHeap(), 0, dwSize);
|
||||
}
|
||||
|
||||
|
@ -187,7 +187,7 @@ LPVOID WINAPI MyMalloc(DWORD dwSize)
|
|||
*/
|
||||
LPVOID WINAPI MyRealloc(LPVOID lpSrc, DWORD dwSize)
|
||||
{
|
||||
TRACE("%p %lu\n", lpSrc, dwSize);
|
||||
TRACE("%p %u\n", lpSrc, dwSize);
|
||||
|
||||
if (lpSrc == NULL)
|
||||
return HeapAlloc(GetProcessHeap(), 0, dwSize);
|
||||
|
|
|
@ -5,4 +5,4 @@ files:
|
|||
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
|
||||
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
|
||||
tags:
|
||||
wine: 82babbee0bd375248bc68342e23e8d50548cfa1b
|
||||
wine: 79ecfaf52f1c552c9f43c636e0133fe0b4d5e6c5
|
||||
|
|
Loading…
Reference in a new issue