Module: wine Branch: master Commit: 53bcd3edb578797a2546c2e1f2795b6cb6efdd5a URL: http://source.winehq.org/git/wine.git/?a=commit;h=53bcd3edb578797a2546c2e1f2...
Author: Francois Gouget fgouget@free.fr Date: Sat Mar 5 11:50:37 2011 +0100
gdi32/tests: Add a '\n' to an ok() call.
---
dlls/gdi32/tests/path.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdi32/tests/path.c b/dlls/gdi32/tests/path.c index 4b061f9..f4b83e2 100644 --- a/dlls/gdi32/tests/path.c +++ b/dlls/gdi32/tests/path.c @@ -89,7 +89,7 @@ static void test_widenpath(void) Polyline(hdc, pnt, 6); EndPath(hdc); ret = WidenPath(hdc); - ok(ret == TRUE, "WidenPath failed: %d", GetLastError()); + ok(ret == TRUE, "WidenPath failed: %d\n", GetLastError()); nSize = GetPath(hdc, NULL, NULL, 0); ok(nSize > 6, "WidenPath should compute a widdened path with a 1px wide pen. Path length is %d, should be more than 6\n", nSize);