jscript: Add a trailing '\n' to an ok() call.

Francois Gouget fgouget at free.fr
Mon Jan 5 12:26:02 CST 2015


---
 dlls/jscript/tests/run.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/jscript/tests/run.c b/dlls/jscript/tests/run.c
index 1adc25d..c0a62b8 100644
--- a/dlls/jscript/tests/run.c
+++ b/dlls/jscript/tests/run.c
@@ -1954,7 +1954,7 @@ static void test_default_value(void)
 
     hres = parse_script_expr("new Date()", &v);
     ok(hres == S_OK, "parse_script_expr failed: %08x\n", hres);
-    ok(V_VT(&v) == VT_DISPATCH, "V_VT(v) = %d", V_VT(&v));
+    ok(V_VT(&v) == VT_DISPATCH, "V_VT(v) = %d\n", V_VT(&v));
     disp = V_DISPATCH(&v);
 
     V_VT(&v) = VT_EMPTY;
-- 
2.1.4




More information about the wine-patches mailing list