Commit 20834a18 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

query: Win64 printf format warning fixes.

parent f9c23da3
......@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE = query.dll
IMPORTS = ole32 user32 advapi32 kernel32 ntdll
EXTRALIBS = -luuid
EXTRADEFS = -DCOM_NO_WINDOWS_H -DWINE_NO_LONG_AS_INT
EXTRADEFS = -DCOM_NO_WINDOWS_H
C_SRCS = \
query_main.c
......
......@@ -82,7 +82,7 @@ HRESULT WINAPI LocateCatalogsA(CHAR const *pwszScope, ULONG iBm,
CHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %lu %p %p %p %p\n", debugstr_a(pwszScope),
FIXME("%s %u %p %p %p %p\n", debugstr_a(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}
......@@ -92,7 +92,7 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
WCHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %lu %p %p %p %p\n", debugstr_w(pwszScope),
FIXME("%s %u %p %p %p %p\n", debugstr_w(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}
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