* net_udp.c (UDP_Init): Fix Con_SafePrintf() call.

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@221 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-06-21 16:17:17 +00:00
parent 6fa1c54ada
commit 027f7d2033
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ sys_socket_t UDP_Init (void)
if ((net_controlsocket = UDP_OpenSocket(0)) == INVALID_SOCKET)
{
Con_SafePrintf("%s: Unable to open control socket, UDP disabled\n");
Con_SafePrintf("UDP_Init: Unable to open control socket, UDP disabled\n");
return INVALID_SOCKET;
}