Francois Gouget : gdi32/tests: Fix the trailing '\n' of a few ok() calls.
Module: wine Branch: master Commit: 4f0c6a31722ab8bd7c7a7ef4cba2f496cff6c41f URL: http://source.winehq.org/git/wine.git/?a=commit;h=4f0c6a31722ab8bd7c7a7ef4cb... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Jun 26 11:52:35 2009 +0200 gdi32/tests: Fix the trailing '\n' of a few ok() calls. --- dlls/gdi32/tests/font.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index b8b5084..d58b8be 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -2936,7 +2936,7 @@ void test_GetTextMetrics2( const char *fontname) of = SelectObject( hdc, hf); ret = GetObjectA( hf, sizeof( lf), &lf); ret = GetTextMetricsA( hdc, &tm); - ok(ret, "GetTextMetricsA error %u, ", GetLastError()); + ok(ret, "GetTextMetricsA error %u\n", GetLastError()); avecharw[0] =tm.tmAveCharWidth; maxcharw[0] =tm.tmMaxCharWidth; SelectObject( hdc, of); @@ -2950,7 +2950,7 @@ void test_GetTextMetrics2( const char *fontname) of = SelectObject( hdc, hf); ret = GetObjectA( hf, sizeof( lf), &lf); ret = GetTextMetricsA( hdc, &tm); - ok(ret, "GetTextMetricsA error %u, ", GetLastError()); + ok(ret, "GetTextMetricsA error %u\n", GetLastError()); avecharw[1] =tm.tmAveCharWidth; maxcharw[1] =tm.tmMaxCharWidth; SelectObject( hdc, of); @@ -2964,7 +2964,7 @@ void test_GetTextMetrics2( const char *fontname) of = SelectObject( hdc, hf); ret = GetObjectA( hf, sizeof( lf), &lf); ret = GetTextMetricsA( hdc, &tm); - ok(ret, "GetTextMetricsA error %u, ", GetLastError()); + ok(ret, "GetTextMetricsA error %u\n", GetLastError()); avecharw[2] =tm.tmAveCharWidth; maxcharw[2] =tm.tmMaxCharWidth; SelectObject( hdc, of);
participants (1)
-
Alexandre Julliard