From 2e7306e96aa623ded81da7509bd93ef48e4b2912 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 17 Apr 2023 04:37:16 +0300 Subject: [PATCH] engine: network: fix missing newline in IP port allocation error message --- engine/common/net_ws.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/common/net_ws.c b/engine/common/net_ws.c index a9929516..8cfde213 100644 --- a/engine/common/net_ws.c +++ b/engine/common/net_ws.c @@ -1980,11 +1980,11 @@ void NET_Config( qboolean multiplayer, qboolean changeport ) nov6 = net.allow_ip6 && NET_IsSocketError( net.ip6_sockets[NS_SERVER] ); if( nov4 && nov6 ) - Host_Error( "Couldn't allocate IPv4 and IPv6 server ports." ); + Host_Error( "Couldn't allocate IPv4 and IPv6 server ports.\n" ); else if( nov4 && !nov6 ) - Con_Printf( S_ERROR "Couldn't allocate IPv4 server port" ); + Con_Printf( S_ERROR "Couldn't allocate IPv4 server port\n" ); else if( !nov4 && nov6 ) - Con_Printf( S_ERROR "Couldn't allocate IPv6 server_port" ); + Con_Printf( S_ERROR "Couldn't allocate IPv6 server_port\n" ); } // get our local address, if possible