Module: wine Branch: master Commit: d719e831ab6b1e32e7cae683aa73a513871528f9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d719e831ab6b1e32e7cae683aa...
Author: Francois Gouget fgouget@free.fr Date: Mon May 9 09:03:27 2011 +0200
ddraw/tests: Add a '\n' to an ok() call.
---
dlls/ddraw/tests/d3d.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ddraw/tests/d3d.c b/dlls/ddraw/tests/d3d.c index 9c01ef0..7ad7492 100644 --- a/dlls/ddraw/tests/d3d.c +++ b/dlls/ddraw/tests/d3d.c @@ -3260,7 +3260,7 @@ static void fix_wndproc(HWND window, LONG_PTR proc) HRESULT hr;
hr = pDirectDrawCreateEx(NULL, (void **)&ddraw7, &IID_IDirectDraw7, NULL); - ok(SUCCEEDED(hr), "Failed to create IDirectDraw7 object, hr %#x.", hr); + ok(SUCCEEDED(hr), "Failed to create IDirectDraw7 object, hr %#x.\n", hr); if (FAILED(hr)) return;
SetWindowLongPtrA(window, GWLP_WNDPROC, proc);