[PATCH] mshtml: Add a trailing '\n' to a TRACE().

Francois Gouget fgouget at free.fr
Mon Jun 29 10:51:24 CDT 2020


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/mshtml/htmldoc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c
index 57ec662de84..d267fa6de52 100644
--- a/dlls/mshtml/htmldoc.c
+++ b/dlls/mshtml/htmldoc.c
@@ -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;
     }
-- 
2.20.1




More information about the wine-devel mailing list