Module: wine Branch: master Commit: 5c3151b2e723e0b40debf039e5efcfa37e014de1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5c3151b2e723e0b40debf039e5...
Author: Francois Gouget fgouget@free.fr Date: Thu Nov 15 19:22:34 2007 +0100
d3d9/tests: Fix the trailing '\n' in an ok() call.
---
dlls/d3d9/tests/visual.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index a61a7d2..8b9a461 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -4425,7 +4425,7 @@ void test_compare_instructions(IDirect3DDevice9 *device) ok(hr == D3D_OK, "IDirect3DDevice9_Present failed with %s\n", DXGetErrorString9(hr));
color = getPixelColor(device, 160, 360); - ok(color == 0x00FF00FF, "Compare test: Quad 1(sge vec) returned color 0x%08x, expected 0x00FF00FFn", color); + ok(color == 0x00FF00FF, "Compare test: Quad 1(sge vec) returned color 0x%08x, expected 0x00FF00FF\n", color); color = getPixelColor(device, 480, 360); ok(color == 0x0000FF00, "Compare test: Quad 2(slt vec) returned color 0x%08x, expected 0x0000FF00\n", color); color = getPixelColor(device, 160, 120);