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

oldstable
Francois Gouget 2011-03-05 11:50:37 +01:00 committed by Alexandre Julliard
parent 91aa80b7e3
commit 53bcd3edb5
1 changed files with 1 additions and 1 deletions

View File

@ -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);