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

Francois Gouget fgouget at free.fr
Thu Aug 8 08:26:12 CDT 2019


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/jscript/enumerator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/jscript/enumerator.c b/dlls/jscript/enumerator.c
index 5c06efd1f9b..06ae7afd5af 100644
--- a/dlls/jscript/enumerator.c
+++ b/dlls/jscript/enumerator.c
@@ -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;
         }
-- 
2.20.1




More information about the wine-devel mailing list