mshtml: Add a trailing '\n' to a TRACE().
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6d81646317
commit
d23e5978b5
|
@ -726,7 +726,7 @@ static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p
|
|||
nsres = nsIDOMHTMLDocument_GetBgColor(This->doc_node->nsdoc, &nsstr);
|
||||
hres = return_nsstr_variant(nsres, &nsstr, NSSTR_COLOR, p);
|
||||
if(hres == S_OK && V_VT(p) == VT_BSTR && !V_BSTR(p)) {
|
||||
TRACE("default #ffffff");
|
||||
TRACE("default #ffffff\n");
|
||||
if(!(V_BSTR(p) = SysAllocString(L"#ffffff")))
|
||||
hres = E_OUTOFMEMORY;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue