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

This commit is contained in:
Francois Gouget 2013-11-14 10:02:33 +01:00 committed by Alexandre Julliard
parent 73bf5f1ae6
commit 2de28eb64b
1 changed files with 1 additions and 1 deletions

View File

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