From 9561037fe0065f6f7878681ca1d925dd81a373c8 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 23 Apr 2015 10:34:59 +0200 Subject: [PATCH] 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 aa06a081838..f31539f8e35 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); } -- 2.11.4.GIT