gdiplus/tests: Add the trailing '\n' to a couple of ok() calls.

Francois Gouget fgouget at free.fr
Sat Mar 1 14:13:09 CST 2008


---
 dlls/gdiplus/tests/image.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/gdiplus/tests/image.c b/dlls/gdiplus/tests/image.c
index d0959e5..0918f9d 100644
--- a/dlls/gdiplus/tests/image.c
+++ b/dlls/gdiplus/tests/image.c
@@ -100,8 +100,8 @@ static void test_GetImageDimension(void)
     h = -1;
     stat = GdipGetImageDimension((GpImage*)bm,&w,&h);
     expect(Ok, stat);
-    ok(fabs(WIDTH - w) < 0.0001, "Width wrong");
-    ok(fabs(HEIGHT - h) < 0.0001, "Height wrong");
+    ok(fabs(WIDTH - w) < 0.0001, "Width wrong\n");
+    ok(fabs(HEIGHT - h) < 0.0001, "Height wrong\n");
     GdipDisposeImage((GpImage*)bm);
 }
 
-- 
1.5.4.1




More information about the wine-patches mailing list