Module: wine Branch: master Commit: 51144d6a6d978a33a0b8c34a4d7fe309ba56e430 URL: http://source.winehq.org/git/wine.git/?a=commit;h=51144d6a6d978a33a0b8c34a4d...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Jun 30 09:30:05 2015 +0200
explorer: Print the debug string and not the pointer to it.
---
programs/explorer/desktop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index d2a4932..2b8502b 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -1171,7 +1171,7 @@ static HRESULT WINAPI shellwindows_Revoke(IShellWindows *iface, LONG cookie)
static HRESULT WINAPI shellwindows_OnNavigate(IShellWindows *iface, LONG cookie, VARIANT *loc) { - FIXME("0x%x %p\n", cookie, debugstr_variant(loc)); + FIXME("0x%x %s\n", cookie, debugstr_variant(loc)); return E_NOTIMPL; }
@@ -1184,7 +1184,7 @@ static HRESULT WINAPI shellwindows_OnActivated(IShellWindows *iface, LONG cookie static HRESULT WINAPI shellwindows_FindWindowSW(IShellWindows *iface, VARIANT *loc, VARIANT *root, int class, LONG *hwnd, int options, IDispatch **disp) { - TRACE("%s %p 0x%x %p 0x%x %p\n", debugstr_variant(loc), debugstr_variant(root), + TRACE("%s %s 0x%x %p 0x%x %p\n", debugstr_variant(loc), debugstr_variant(root), class, hwnd, options, disp);
if (class != SWC_DESKTOP)