Module: wine Branch: master Commit: 04105f7ff3f40d4ca759e4258dd2fc6666f5c55f URL: http://source.winehq.org/git/wine.git/?a=commit;h=04105f7ff3f40d4ca759e4258d...
Author: Francois Gouget fgouget@free.fr Date: Wed Aug 19 09:12:40 2009 +0200
gdiplus/tests: Add a trailing '\n' to an ok() call.
---
dlls/gdiplus/tests/graphics.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/tests/graphics.c b/dlls/gdiplus/tests/graphics.c index 54d9b32..62b4990 100644 --- a/dlls/gdiplus/tests/graphics.c +++ b/dlls/gdiplus/tests/graphics.c @@ -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;