oleacc: Win64 printf format warning fixes.

Michael Stefaniuc mstefani at redhat.de
Tue Oct 3 16:40:23 CDT 2006


---
 dlls/oleacc/Makefile.in |    1 -
 dlls/oleacc/main.c      |    4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/oleacc/Makefile.in b/dlls/oleacc/Makefile.in
index de81290..d52d548 100644
--- a/dlls/oleacc/Makefile.in
+++ b/dlls/oleacc/Makefile.in
@@ -5,7 +5,6 @@ VPATH     = @srcdir@
 MODULE    = oleacc.dll
 IMPORTLIB = liboleacc.$(IMPLIBEXT)
 IMPORTS   = kernel32
-EXTRADEFS = -DWINE_NO_LONG_AS_INT
 
 C_SRCS = \
 	main.c
diff --git a/dlls/oleacc/main.c b/dlls/oleacc/main.c
index 753a3ed..eb57396 100644
--- a/dlls/oleacc/main.c
+++ b/dlls/oleacc/main.c
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(oleacc);
 HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject,
                              REFIID riidInterface, void** ppvObject )
 {
-    FIXME("%p %ld %s %p\n", hwnd, idObject,
+    FIXME("%p %d %s %p\n", hwnd, idObject,
           debugstr_guid( riidInterface ), ppvObject );
     return E_NOTIMPL;
 }
@@ -45,7 +45,7 @@ HRESULT WINAPI LresultFromObject( REFIID
 HRESULT WINAPI AccessibleObjectFromWindow( HWND hwnd, DWORD dwObjectID,
                              REFIID riid, void** ppvObject )
 {
-    FIXME("%p %ld %s %p\n", hwnd, dwObjectID,
+    FIXME("%p %d %s %p\n", hwnd, dwObjectID,
           debugstr_guid( riid ), ppvObject );
     return E_NOTIMPL;
 }
-- 
1.4.2.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20061003/3ee2e5b9/attachment.pgp


More information about the wine-patches mailing list