Francois Gouget : comctl32: Add missing '\n' to ok() call.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Nov 7 10:16:51 CST 2006


Module: wine
Branch: master
Commit: 88f3cb2a7da7734dd18073660c73294f023642e5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=88f3cb2a7da7734dd18073660c73294f023642e5

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Nov  7 00:42:27 2006 +0100

comctl32: Add missing '\n' to ok() call.

---

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

diff --git a/dlls/comctl32/tests/toolbar.c b/dlls/comctl32/tests/toolbar.c
index daa8d5b..92e662b 100644
--- a/dlls/comctl32/tests/toolbar.c
+++ b/dlls/comctl32/tests/toolbar.c
@@ -845,10 +845,10 @@ void test_sizes()
     /* delete button doesn't change the buttons size */
     SendMessageA(hToolbar, TB_DELETEBUTTON, 2, 0);
     SendMessageA(hToolbar, TB_DELETEBUTTON, 1, 0);
-    ok(SendMessageA(hToolbar, TB_GETBUTTONSIZE, 0, 0) == MAKELONG(163, 39), "Unexpected button size");
+    ok(SendMessageA(hToolbar, TB_GETBUTTONSIZE, 0, 0) == MAKELONG(163, 39), "Unexpected button size\n");
     /* TB_INSERTBUTTONS will */
     SendMessageA(hToolbar, TB_INSERTBUTTON, 1, (LPARAM)&buttons2[0]);
-    ok(SendMessageA(hToolbar, TB_GETBUTTONSIZE, 0, 0) == MAKELONG(23, 22), "Unexpected button size");
+    ok(SendMessageA(hToolbar, TB_GETBUTTONSIZE, 0, 0) == MAKELONG(23, 22), "Unexpected button size\n");
 
     rebuild_toolbar(&hToolbar);
     SendMessageA(hToolbar, TB_ADDBUTTONS, 1, (LPARAM)&buttons3[3]);




More information about the wine-cvs mailing list