dpnet/tests: Add a trailing '\n' to some ok() calls.

Francois Gouget fgouget at free.fr
Sun Sep 28 16:52:03 CDT 2014


---
 dlls/dpnet/tests/address.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dpnet/tests/address.c b/dlls/dpnet/tests/address.c
index 4d825bb..0f0b8ce 100644
--- a/dlls/dpnet/tests/address.c
+++ b/dlls/dpnet/tests/address.c
@@ -189,14 +189,14 @@ static void address_setsp(void)
 
         hr = IDirectPlay8Address_GetNumComponents(localaddr, &components);
         ok(hr == S_OK, "got 0x%08x\n", hr);
-        ok(components == 0, "components=%d", components);
+        ok(components == 0, "components=%d\n", components);
 
         hr = IDirectPlay8Address_SetSP(localaddr, &CLSID_DP8SP_TCPIP);
         ok(hr == S_OK, "got 0x%08x\n", hr);
 
         hr = IDirectPlay8Address_GetNumComponents(localaddr, &components);
         ok(hr == S_OK, "got 0x%08x\n", hr);
-        ok(components == 1, "components=%d", components);
+        ok(components == 1, "components=%d\n", components);
 
         hr = IDirectPlay8Address_GetComponentByIndex(localaddr, 0, NULL, &namelen, NULL, &bufflen, &type);
         todo_wine ok(hr == DPNERR_BUFFERTOOSMALL, "got 0x%08x\n", hr);
-- 
2.1.0




More information about the wine-patches mailing list