Module: wine Branch: master Commit: a0bb28f7d98793cca4e6920e0c6114e243ccf0ca URL: http://source.winehq.org/git/wine.git/?a=commit;h=a0bb28f7d98793cca4e6920e0c...
Author: Francois Gouget fgouget@free.fr Date: Thu Apr 19 22:12:31 2012 +0200
comctl32/tests: Add a trailing '\n' to an ok() call.
---
dlls/comctl32/tests/tooltips.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/tests/tooltips.c b/dlls/comctl32/tests/tooltips.c index c92ed62..71c66a5 100644 --- a/dlls/comctl32/tests/tooltips.c +++ b/dlls/comctl32/tests/tooltips.c @@ -326,7 +326,7 @@ static void test_gettext(void) toolinfoA.lpszText = bufA; SendMessageA(hwnd, TTM_GETTOOLINFOA, 0, (LPARAM)&toolinfoA); ok(toolinfoA.lpszText == NULL, - "expected NULL, got %p", toolinfoA.lpszText); + "expected NULL, got %p\n", toolinfoA.lpszText); } else {