gdiplus/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2009-08-19 09:12:40 +02:00 committed by Alexandre Julliard
parent 544f882918
commit 04105f7ff3
1 changed files with 1 additions and 1 deletions

View File

@ -1788,7 +1788,7 @@ static void test_GdipGetVisibleClipBounds_window(void)
ok(hwnd != NULL, "Expected window to be created\n");
/* get client area size */
ok(GetClientRect(hwnd, &wnd_rect), "GetClientRect should have succeeded");
ok(GetClientRect(hwnd, &wnd_rect), "GetClientRect should have succeeded\n");
window.X = wnd_rect.left;
window.Y = wnd_rect.top;
window.Width = wnd_rect.right - wnd_rect.left;