comctl32/tests: Add a '\n' to a pair of ok() calls.

Francois Gouget fgouget at free.fr
Sat Mar 5 04:50:23 CST 2011


---
 dlls/comctl32/tests/comboex.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/comboex.c b/dlls/comctl32/tests/comboex.c
index ca30482..59c261c 100644
--- a/dlls/comctl32/tests/comboex.c
+++ b/dlls/comctl32/tests/comboex.c
@@ -405,7 +405,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
     wp.hwndInsertAfter = NULL;
 
     ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp);
-    ok(ret == 0, "expected 0, got %x", ret);
+    ok(ret == 0, "expected 0, got %x\n", ret);
     ok(wp.cy == combo_height,
             "Expected height %d, got %d\n", combo_height, wp.cy);
 
@@ -419,7 +419,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
     wp.hwndInsertAfter = NULL;
 
     ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp);
-    ok(ret == 0, "expected 0, got %x", ret);
+    ok(ret == 0, "expected 0, got %x\n", ret);
     ok(wp.cy == combo_height,
             "Expected height %d, got %d\n", combo_height, wp.cy);
 
-- 
1.7.2.3




More information about the wine-patches mailing list