Module: wine Branch: master Commit: 9561037fe0065f6f7878681ca1d925dd81a373c8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9561037fe0065f6f7878681ca1...
Author: Francois Gouget fgouget@free.fr Date: Thu Apr 23 10:34:59 2015 +0200
ws2_32/tests: Add a trailing '\n' to an ok() call.
---
dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index aa06a08..f31539f 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -4300,7 +4300,7 @@ static void test_getsockname(void) strcpy(ipstr, inet_ntoa(sa_get.sin_addr)); trace("testing bind on interface %s\n", ipstr); ok(sa_get.sin_addr.s_addr == sa_set.sin_addr.s_addr, - "address does not match: %s != %s", ipstr, inet_ntoa(sa_set.sin_addr)); + "address does not match: %s != %s\n", ipstr, inet_ntoa(sa_set.sin_addr));
closesocket(sock); }