Jacek Caban : mshtml: Fix debug traces.
Module: wine Branch: master Commit: e6b353dec8b6b2ef41ff9643886a1e629f7219a6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e6b353dec8b6b2ef41ff964388... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Oct 19 23:26:46 2006 +0200 mshtml: Fix debug traces. --- dlls/mshtml/htmlinput.c | 2 +- dlls/mshtml/htmlselect.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/mshtml/htmlinput.c b/dlls/mshtml/htmlinput.c index 6970ef5..e618735 100644 --- a/dlls/mshtml/htmlinput.c +++ b/dlls/mshtml/htmlinput.c @@ -190,7 +190,7 @@ static HRESULT WINAPI HTMLInputElement_g nsAString_Finish(&value_str); - TRACE("value=%s\n", debugstr_w(value)); + TRACE("value=%s\n", debugstr_w(*p)); return S_OK; } diff --git a/dlls/mshtml/htmlselect.c b/dlls/mshtml/htmlselect.c index 6a23c4f..ce1b40b 100644 --- a/dlls/mshtml/htmlselect.c +++ b/dlls/mshtml/htmlselect.c @@ -186,7 +186,7 @@ static HRESULT WINAPI HTMLSelectElement_ nsAString_Finish(&name_str); - TRACE("name=%s\n", debugstr_w(name)); + TRACE("name=%s\n", debugstr_w(*p)); return S_OK; } @@ -260,7 +260,7 @@ static HRESULT WINAPI HTMLSelectElement_ nsAString_Finish(&value_str); - TRACE("value=%s\n", debugstr_w(value)); + TRACE("value=%s\n", debugstr_w(*p)); return S_OK; }
participants (1)
-
Alexandre Julliard