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

oldstable
Francois Gouget 2010-06-24 09:56:16 +02:00 committed by Alexandre Julliard
parent 13f8206480
commit 5fe33dcb53
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ START_TEST(dependency)
hr = IBaseFilter_GetClassID(bf, &clsid);
ok(hr == S_OK, "GetClassId failed with 0x%08x\n", hr);
if (hr == S_OK)
ok(IsEqualCLSID(&clsid, &CLSID_DSoundRender), "Wrong class id %s", dump_guid(&clsid));
ok(IsEqualCLSID(&clsid, &CLSID_DSoundRender), "Wrong class id %s\n", dump_guid(&clsid));
}
}