Michael Stefaniuc : urlmon: Print the debug string and not the pointer to it.

Alexandre Julliard julliard at winehq.org
Mon Mar 26 12:29:32 CDT 2012


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Mar 21 23:40:35 2012 +0100

urlmon: Print the debug string and not the pointer to it.

---

 dlls/urlmon/urlmon_main.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/urlmon/urlmon_main.c b/dlls/urlmon/urlmon_main.c
index 3fea58c..0cb72dd 100644
--- a/dlls/urlmon/urlmon_main.c
+++ b/dlls/urlmon/urlmon_main.c
@@ -998,9 +998,8 @@ HRESULT WINAPI GetClassFileOrMime(LPBC pBC, LPCWSTR pszFilename,
         LPVOID pBuffer, DWORD cbBuffer, LPCWSTR pszMimeType, DWORD dwReserved,
         CLSID *pclsid)
 {
-    FIXME("(%p, %s, %p, %d, %p, 0x%08x, %p): stub\n", pBC,
-        debugstr_w(pszFilename), pBuffer, cbBuffer, debugstr_w(pszMimeType),
-        dwReserved, pclsid);
+    FIXME("(%p, %s, %p, %d, %s, 0x%08x, %p): stub\n", pBC, debugstr_w(pszFilename), pBuffer,
+            cbBuffer, debugstr_w(pszMimeType), dwReserved, pclsid);
     return E_NOTIMPL;
 }
 




More information about the wine-cvs mailing list