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

Francois Gouget fgouget at free.fr
Fri May 2 09:44:43 CDT 2014


---
 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
-- 
1.9.2




More information about the wine-patches mailing list