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

This commit is contained in:
Francois Gouget 2015-04-23 10:34:59 +02:00 committed by Alexandre Julliard
parent bed7e69a14
commit 9561037fe0
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}