From 2de28eb64b11c61375af3a338d19d8f04c1867bd Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 14 Nov 2013 10:02:33 +0100 Subject: [PATCH] mshtml: Add a trailing '\n' to a TRACE(). --- dlls/mshtml/htmlbody.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/htmlbody.c b/dlls/mshtml/htmlbody.c index 2b98cf45f8e..fcd876636ec 100644 --- a/dlls/mshtml/htmlbody.c +++ b/dlls/mshtml/htmlbody.c @@ -656,7 +656,7 @@ static HRESULT WINAPI HTMLBodyElement_get_scroll(IHTMLBodyElement *iface, BSTR * }else if(!strcmpW(overflow, hiddenW)) { ret = noW; }else { - TRACE("Defaulting %s to NULL", debugstr_w(overflow)); + TRACE("Defaulting %s to NULL\n", debugstr_w(overflow)); *p = NULL; return S_OK; }