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

oldstable
Francois Gouget 2010-03-20 15:25:20 +01:00 committed by Alexandre Julliard
parent 381d73e423
commit f096b023c4
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ static void test_GetChildContainer(void)
ok(hr == S_OK,
"Expected IDxDiagContainer::GetChildContainer to return S_OK, got 0x%08x\n", hr);
if (SUCCEEDED(hr))
todo_wine ok(ptr != child, "Expected the two pointers (%p vs. %p) to be unequal", child, ptr);
todo_wine ok(ptr != child, "Expected the two pointers (%p vs. %p) to be unequal\n", child, ptr);
IDxDiagContainer_Release(ptr);
IDxDiagContainer_Release(child);