spoolss: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-03 23:40:54 +02:00 committed by Alexandre Julliard
parent 20834a18be
commit 52f8632300
2 changed files with 2 additions and 3 deletions

View file

@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = spoolss.dll
IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \
spoolss_main.c

View file

@ -33,7 +33,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(spoolss);
*/
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("(%p, %ld, %p)\n", hinstDLL, fdwReason, lpvReserved);
TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
switch (fdwReason) {
case DLL_WINE_PREATTACH:
@ -67,7 +67,7 @@ LPVOID WINAPI DllAllocSplMem(DWORD size)
LPVOID res;
res = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
TRACE("(%ld) => %p\n", size, res);
TRACE("(%d) => %p\n", size, res);
return res;
}