Module: wine Branch: master Commit: 9e2415dd0a205552e7f03dc01ef4fce8ee3e5d0c URL: https://source.winehq.org/git/wine.git/?a=commit;h=9e2415dd0a205552e7f03dc01...
Author: Francois Gouget fgouget@free.fr Date: Wed Jun 20 02:59:02 2018 +0200
wsdapi: Add a trailing '\n' to a WARN() message.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 e124a5d..c8f260c 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; }