Michael Stefaniuc : oleacc: Win64 printf format warning fixes.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Oct 4 04:24:55 CDT 2006


Module: wine
Branch: master
Commit: f9c23da310ed5b874574e6e67980eb07122df077
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f9c23da310ed5b874574e6e67980eb07122df077

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Oct  3 23:40:23 2006 +0200

oleacc: Win64 printf format warning fixes.

---

 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;
 }




More information about the wine-cvs mailing list