mshtml: Fix debug traces.

This commit is contained in:
Jacek Caban 2006-10-19 23:26:46 +02:00 committed by Alexandre Julliard
parent 13c886d9fc
commit e6b353dec8
2 changed files with 3 additions and 3 deletions

View File

@ -190,7 +190,7 @@ static HRESULT WINAPI HTMLInputElement_get_value(IHTMLInputElement *iface, BSTR
nsAString_Finish(&value_str);
TRACE("value=%s\n", debugstr_w(value));
TRACE("value=%s\n", debugstr_w(*p));
return S_OK;
}

View File

@ -186,7 +186,7 @@ static HRESULT WINAPI HTMLSelectElement_get_name(IHTMLSelectElement *iface, BSTR
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_get_value(IHTMLSelectElement *iface, BST
nsAString_Finish(&value_str);
TRACE("value=%s\n", debugstr_w(value));
TRACE("value=%s\n", debugstr_w(*p));
return S_OK;
}