Module: wine Branch: master Commit: 1465b4d2116ef7456159fd623114df4327d17a54 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1465b4d2116ef7456159fd6231...
Author: Francois Gouget fgouget@free.fr Date: Fri Dec 3 15:00:42 2010 +0100
comctl32/tests: Add a trailing '\n' to an ok() call.
---
dlls/comctl32/tests/rebar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/tests/rebar.c b/dlls/comctl32/tests/rebar.c index 01579a7..1856502 100644 --- a/dlls/comctl32/tests/rebar.c +++ b/dlls/comctl32/tests/rebar.c @@ -827,7 +827,7 @@ static int resize_numtests = 0; check_rect("client", r, res->rc); \ } \ value = (int)SendMessage(hRebar, RB_GETROWCOUNT, 0, 0); \ - ok(res->iNumRows == value, "RB_GETROWCOUNT expected %d got %d", res->iNumRows, value); \ + ok(res->iNumRows == value, "RB_GETROWCOUNT expected %d got %d\n", res->iNumRows, value); \ if (res->heightNotify) { \ RECT rcClient; \ GetClientRect(hRebar, &rcClient); \