Francois Gouget : dpnet/tests: Add a trailing '\n' to some ok() calls.
Module: wine Branch: master Commit: d83f2ac0eca3569c73fcdd13b546c36a55692225 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d83f2ac0eca3569c73fcdd13b5... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun Sep 28 23:52:03 2014 +0200 dpnet/tests: Add a trailing '\n' to some ok() calls. --- 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);
participants (1)
-
Alexandre Julliard