msxml3: Add a trailing '\n' to an ERR() call.

This commit is contained in:
Francois Gouget 2010-12-03 15:02:20 +01:00 committed by Alexandre Julliard
parent 036909e838
commit f10c16072e
1 changed files with 1 additions and 1 deletions

View File

@ -2637,7 +2637,7 @@ static HRESULT WINAPI domdoc_validateNode(
if (!is_wellformed(get_doc(This)))
{
ERR("doc not well-formed");
ERR("doc not well-formed\n");
if (err)
*err = create_parseError(E_XML_NOTWF, NULL, NULL, NULL, 0, 0, 0);
return S_FALSE;