Francois Gouget : mshtml: Add a trailing '\n' to a TRACE().

Alexandre Julliard julliard at winehq.org
Mon Jun 29 14:59:22 CDT 2020


Module: wine
Branch: master
Commit: d23e5978b512ea940c10e9130e25aebfb5fa034c
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d23e5978b512ea940c10e9130e25aebfb5fa034c

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Jun 29 17:51:24 2020 +0200

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 0f8bf3f2dc..733601306f 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;
     }




More information about the wine-cvs mailing list