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:
Francois Gouget 2020-06-29 17:51:24 +02:00 committed by Alexandre Julliard
parent 6d81646317
commit d23e5978b5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}