jscript: Add a trailing '\n' to a WARN() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-08-08 15:26:12 +02:00 committed by Alexandre Julliard
parent cc9ce65d96
commit bb62fe7f51

View file

@ -73,7 +73,7 @@ static inline HRESULT enumvar_get_next_item(EnumeratorInstance *This)
VariantClear(&nextitem);
if (FAILED(hres))
{
WARN("failed to convert jsval to variant!");
WARN("failed to convert jsval to variant!\n");
This->item = jsval_undefined();
return hres;
}