From 9e2415dd0a205552e7f03dc01ef4fce8ee3e5d0c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 20 Jun 2018 02:59:02 +0200 Subject: [PATCH] wsdapi: Add a trailing '\n' to a WARN() message. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/wsdapi/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wsdapi/network.c b/dlls/wsdapi/network.c index e124a5d90cf..c8f260c7653 100644 --- a/dlls/wsdapi/network.c +++ b/dlls/wsdapi/network.c @@ -540,7 +540,7 @@ static BOOL start_listening_on_all_addresses(IWSDiscoveryPublisherImpl *impl, UL { if (impl->num_thread_handles >= MAX_WSD_THREADS) { - WARN("Exceeded maximum number of supported listener threads; too many network interfaces."); + WARN("Exceeded maximum number of supported listener threads; too many network interfaces.\n"); goto cleanup; }