Module: wine Branch: master Commit: 20834a18be42f3b0bf6e29dcdd65cf1a07e9307a URL: http://source.winehq.org/git/wine.git/?a=commit;h=20834a18be42f3b0bf6e29dcdd...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Oct 3 23:40:42 2006 +0200
query: Win64 printf format warning fixes.
---
dlls/query/Makefile.in | 2 +- dlls/query/query_main.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/query/Makefile.in b/dlls/query/Makefile.in index 2d69d43..1990e12 100644 --- a/dlls/query/Makefile.in +++ b/dlls/query/Makefile.in @@ -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 diff --git a/dlls/query/query_main.c b/dlls/query/query_main.c index 938c4ca..f25c905 100644 --- a/dlls/query/query_main.c +++ b/dlls/query/query_main.c @@ -82,7 +82,7 @@ HRESULT WINAPI LocateCatalogsA(CHAR cons 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 con 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; }