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

This commit is contained in:
Francois Gouget 2014-05-02 16:44:43 +02:00 committed by Alexandre Julliard
parent 4e950d9cbc
commit 3d70f86fe2
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ static void test_streamonhglobal(IStream *pStream)
ll.u.HighPart = 0;
ll.u.LowPart = 0x7FFFFFFF;
hr = IStream_Seek(pStream, ll, STREAM_SEEK_CUR, &ull);
ok(hr == S_OK || hr == STG_E_SEEKERROR /* win8 */, "IStream_Seek");
ok(hr == S_OK || hr == STG_E_SEEKERROR /* win8 */, "IStream_Seek\n");
if (SUCCEEDED(hr))
ok(ull.u.LowPart == 0x00000007, "should have set LowPart to 0x00000007 instead of %08x\n", ull.u.LowPart);
else