ddraw/tests: Add a '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2011-05-09 09:03:27 +02:00 committed by Alexandre Julliard
parent 8213f5410b
commit d719e831ab
1 changed files with 1 additions and 1 deletions

View File

@ -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);