Commit e6b353de authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fix debug traces.

parent 13c886d9
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment