mshtml: Fix debug traces.
This commit is contained in:
parent
13c886d9fc
commit
e6b353dec8
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue