Module: wine Branch: master Commit: 5a5a89a3276f377c97211df6efc916cae7fb97b7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5a5a89a3276f377c97211df6ef...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:36:19 2012 +0100
ieframe: Print the debug string and not the pointer to it.
---
dlls/ieframe/dochost.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ieframe/dochost.c b/dlls/ieframe/dochost.c index 9f22514..ac74c9c 100644 --- a/dlls/ieframe/dochost.c +++ b/dlls/ieframe/dochost.c @@ -520,8 +520,8 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, { DocHost *This = impl_from_IOleCommandTarget(iface);
- TRACE("(%p)->(%s %d %d %p %p)\n", This, debugstr_guid(pguidCmdGroup), nCmdID, - nCmdexecopt, debugstr_variant(pvaIn), debugstr_variant(pvaOut)); + TRACE("(%p)->(%s %d %d %s %s)\n", This, debugstr_guid(pguidCmdGroup), nCmdID, nCmdexecopt, + debugstr_variant(pvaIn), debugstr_variant(pvaOut));
if(!pguidCmdGroup) { switch(nCmdID) {