Commit 52f86323 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

spoolss: Win64 printf format warning fixes.

parent 20834a18
...@@ -4,7 +4,6 @@ SRCDIR = @srcdir@ ...@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
MODULE = spoolss.dll MODULE = spoolss.dll
IMPORTS = kernel32 IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \ C_SRCS = \
spoolss_main.c spoolss_main.c
......
...@@ -33,7 +33,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(spoolss); ...@@ -33,7 +33,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(spoolss);
*/ */
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) 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) { switch (fdwReason) {
case DLL_WINE_PREATTACH: case DLL_WINE_PREATTACH:
...@@ -67,7 +67,7 @@ LPVOID WINAPI DllAllocSplMem(DWORD size) ...@@ -67,7 +67,7 @@ LPVOID WINAPI DllAllocSplMem(DWORD size)
LPVOID res; LPVOID res;
res = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size); res = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
TRACE("(%ld) => %p\n", size, res); TRACE("(%d) => %p\n", size, res);
return res; return res;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment