Commit 9561037f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent bed7e69a
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment