atl: Win64 printf format warning fixes.

Michael Stefaniuc mstefani at redhat.de
Fri Oct 6 16:02:28 CDT 2006


---
 dlls/atl/Makefile.in |    1 -
 dlls/atl/atl_main.c  |   10 +++++-----
 dlls/atl/registrar.c |   16 ++++++++--------
 3 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/dlls/atl/Makefile.in b/dlls/atl/Makefile.in
index 81c3464..cd4de31 100644
--- a/dlls/atl/Makefile.in
+++ b/dlls/atl/Makefile.in
@@ -6,7 +6,6 @@ MODULE    = atl.dll
 IMPORTLIB = libatl.$(IMPLIBEXT)
 IMPORTS   = ole32 shlwapi user32 advapi32 kernel32
 EXTRALIBS = -luuid
-EXTRADEFS = -DWINE_NO_LONG_AS_INT
 
 C_SRCS = \
 	atl_main.c \
diff --git a/dlls/atl/atl_main.c b/dlls/atl/atl_main.c
index fcda029..2fdf901 100644
--- a/dlls/atl/atl_main.c
+++ b/dlls/atl/atl_main.c
@@ -43,7 +43,7 @@ HINSTANCE hInst;
 
 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
-    TRACE("(0x%p, %ld, %p)\n",hinstDLL,fdwReason,lpvReserved);
+    TRACE("(0x%p, %d, %p)\n",hinstDLL,fdwReason,lpvReserved);
 
     if (fdwReason == DLL_PROCESS_ATTACH) {
         DisableThreadLibraryCalls(hinstDLL);
@@ -143,7 +143,7 @@ HRESULT WINAPI AtlModuleRegisterClassObj
     HRESULT hRes = S_OK;
     int i=0;
 
-    TRACE("(%p %li %li)\n",pM, dwClsContext, dwFlags);
+    TRACE("(%p %i %i)\n",pM, dwClsContext, dwFlags);
 
     if (pM == NULL)
         return E_INVALIDARG;
@@ -222,7 +222,7 @@ HRESULT WINAPI AtlInternalQueryInterface
 
     while (pEntries[i].pFunc != 0)
     {
-        TRACE("Trying entry %i (%p %li %p)\n",i,pEntries[i].piid,
+        TRACE("Trying entry %i (%p %i %p)\n",i,pEntries[i].piid,
               pEntries[i].dw, pEntries[i].pFunc);
 
         if (pEntries[i].piid && IsEqualGUID(iid,pEntries[i].piid))
@@ -244,7 +244,7 @@ HRESULT WINAPI AtlInternalQueryInterface
         }
         i++;
     }
-    TRACE("Done returning (0x%lx)\n",rc);
+    TRACE("Done returning (0x%x)\n",rc);
     return rc;
 }
 
@@ -272,7 +272,7 @@ HRESULT WINAPI AtlAdvise(IUnknown *pUnkC
  */
 HRESULT WINAPI AtlUnadvise(IUnknown *pUnkCP, const IID *iid, DWORD dw)
 {
-    FIXME("%p %p %ld\n", pUnkCP, iid, dw);
+    FIXME("%p %p %d\n", pUnkCP, iid, dw);
     return S_OK;
 }
 
diff --git a/dlls/atl/registrar.c b/dlls/atl/registrar.c
index 9770e91..0a62aad 100644
--- a/dlls/atl/registrar.c
+++ b/dlls/atl/registrar.c
@@ -249,7 +249,7 @@ static HRESULT do_process_key(LPCOLESTR 
                     SHDeleteKeyW(parent_key, buf->str);
                 lres = RegCreateKeyW(parent_key, buf->str, &hkey);
                 if(lres != ERROR_SUCCESS) {
-                    WARN("Could not create(open) key: %08lx\n", lres);
+                    WARN("Could not create(open) key: %08x\n", lres);
                     hres = HRESULT_FROM_WIN32(lres);
                     break;
                 }
@@ -258,7 +258,7 @@ static HRESULT do_process_key(LPCOLESTR 
             strbuf_write(buf->str, &name, -1);
             lres = RegOpenKeyW(parent_key, buf->str, &hkey);
               if(lres != ERROR_SUCCESS)
-                WARN("Could not open key %s: %08lx\n", debugstr_w(name.str), lres);
+                WARN("Could not open key %s: %08x\n", debugstr_w(name.str), lres);
         }
 
         if(key_type != DO_DELETE && *iter == '=') {
@@ -280,7 +280,7 @@ static HRESULT do_process_key(LPCOLESTR 
                     lres = RegSetValueExW(hkey, name.len ? name.str :  NULL, 0, REG_SZ, (PBYTE)buf->str,
                             (lstrlenW(buf->str)+1)*sizeof(WCHAR));
                     if(lres != ERROR_SUCCESS) {
-                        WARN("Could set value of key: %08lx\n", lres);
+                        WARN("Could set value of key: %08x\n", lres);
                         hres = HRESULT_FROM_WIN32(lres);
                         break;
                     }
@@ -296,7 +296,7 @@ static HRESULT do_process_key(LPCOLESTR 
                     lres = RegSetValueExW(hkey, name.len ? name.str :  NULL, 0, REG_DWORD,
                             (PBYTE)&dw, sizeof(dw));
                     if(lres != ERROR_SUCCESS) {
-                        WARN("Could set value of key: %08lx\n", lres);
+                        WARN("Could set value of key: %08x\n", lres);
                         hres = HRESULT_FROM_WIN32(lres);
                         break;
                     }
@@ -390,7 +390,7 @@ static HRESULT do_process_root_key(LPCOL
         }
         hres = do_process_key(&iter, root_keys[i].key, &buf, do_register);
         if(FAILED(hres)) {
-            WARN("Processing key failed: %08lx\n", hres);
+            WARN("Processing key failed: %08x\n", hres);
             break;
         }
         hres = get_word(&iter, &buf);
@@ -520,7 +520,7 @@ static ULONG WINAPI Registrar_AddRef(IRe
 {
     Registrar *This = (Registrar*)iface;
     ULONG ref = InterlockedIncrement(&This->ref);
-    TRACE("(%p) ->%ld\n", This, ref);
+    TRACE("(%p) ->%d\n", This, ref);
     return ref;
 }
 
@@ -529,7 +529,7 @@ static ULONG WINAPI Registrar_Release(IR
     Registrar *This = (Registrar*)iface;
     ULONG ref = InterlockedDecrement(&This->ref);
 
-    TRACE("(%p) ->%ld\n", This, ref);
+    TRACE("(%p) ->%d\n", This, ref);
     if(!ref) {
         IRegistrar_ClearReplacements(iface);
         HeapFree(GetProcessHeap(), 0, This);
@@ -839,6 +839,6 @@ HRESULT WINAPI DllUnregisterServer(void)
  */
 HRESULT WINAPI DllCanUnloadNow(void)
 {
-    TRACE("dll_count = %lu\n", dll_count);
+    TRACE("dll_count = %u\n", dll_count);
     return dll_count ? S_FALSE : S_OK;
 }
-- 
1.4.2.3
-------------- 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/20061006/9546f4ce/attachment.pgp


More information about the wine-patches mailing list