From a0bb28f7d98793cca4e6920e0c6114e243ccf0ca Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 19 Apr 2012 22:12:31 +0200 Subject: [PATCH] comctl32/tests: Add a trailing '\n' to an ok() call. --- dlls/comctl32/tests/tooltips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/tests/tooltips.c b/dlls/comctl32/tests/tooltips.c index c92ed622909..71c66a5517b 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 {