Module: wine Branch: master Commit: 3d70f86fe2b921b47727963ded281c4f0c2cf12c URL: http://source.winehq.org/git/wine.git/?a=commit;h=3d70f86fe2b921b47727963ded...
Author: Francois Gouget fgouget@free.fr Date: Fri May 2 16:44:43 2014 +0200
ole32/tests: Add a trailing '\n' to an ok() call.
---
dlls/ole32/tests/hglobalstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ole32/tests/hglobalstream.c b/dlls/ole32/tests/hglobalstream.c index cf9fedf..e20d81b 100644 --- a/dlls/ole32/tests/hglobalstream.c +++ b/dlls/ole32/tests/hglobalstream.c @@ -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