newdev: Win64 printf format warning fixes.

Michael Stefaniuc mstefani at redhat.de
Tue Oct 3 16:39:59 CDT 2006


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

diff --git a/dlls/newdev/Makefile.in b/dlls/newdev/Makefile.in
index a0c11af..6cc4bf3 100644
--- a/dlls/newdev/Makefile.in
+++ b/dlls/newdev/Makefile.in
@@ -5,7 +5,6 @@ VPATH     = @srcdir@
 MODULE    = newdev.dll
 IMPORTLIB = libnewdev.$(IMPLIBEXT)
 IMPORTS   = kernel32
-EXTRADEFS = -DWINE_NO_LONG_AS_INT
 
 C_SRCS = main.c
 
diff --git a/dlls/newdev/main.c b/dlls/newdev/main.c
index 3646612..f5d8ad3 100644
--- a/dlls/newdev/main.c
+++ b/dlls/newdev/main.c
@@ -42,7 +42,7 @@ BOOL WINAPI InstallNewDevice(HWND hwndPa
 BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareId,
     LPCSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL)
 {
-    FIXME("Stub! %s %s 0x%08lx\n", HardwareId, FullInfPath, InstallFlags);
+    FIXME("Stub! %s %s 0x%08x\n", HardwareId, FullInfPath, InstallFlags);
     return TRUE;
 }
 
@@ -53,6 +53,6 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDe
 BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND hwndParent, LPCWSTR HardwareId,
     LPCWSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL)
 {
-    FIXME("Stub! %s %s 0x%08lx\n", debugstr_w(HardwareId), debugstr_w(FullInfPath), InstallFlags);
+    FIXME("Stub! %s %s 0x%08x\n", debugstr_w(HardwareId), debugstr_w(FullInfPath), InstallFlags);
     return TRUE;
 }
-- 
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/330ceb1c/attachment.pgp


More information about the wine-patches mailing list