From c7eca6a0271a2d8fdbc7bc8a5362991aa51651ff Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 3 Aug 2007 00:43:45 +0200 Subject: [PATCH] opengl32/tests: Add missing '\n' to ok() call. --- dlls/opengl32/tests/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/opengl32/tests/opengl.c b/dlls/opengl32/tests/opengl.c index 17ca54ad394..efb1cd621a8 100644 --- a/dlls/opengl32/tests/opengl.c +++ b/dlls/opengl32/tests/opengl.c @@ -181,7 +181,7 @@ static void test_setpixelformat(void) /* This should pass even on the main device context */ pf = ChoosePixelFormat(hdc, &pfd); - ok(pf != 0, "ChoosePixelFormat failed on main device context"); + ok(pf != 0, "ChoosePixelFormat failed on main device context\n"); /* SetPixelFormat on the main device context 'X root window' should fail */ res = SetPixelFormat(hdc, pf, &pfd);