net: Make NET_SV_SendConsoleMessage 's' parameter const

This commit is contained in:
Turo Lamminen 2018-12-11 19:40:18 +02:00
parent 0032332dac
commit 30673d2389

View file

@ -186,7 +186,7 @@ static boolean ClientConnected(net_client_t *client)
// Send a message to be displayed on a client's console
static void NET_SV_SendConsoleMessage(net_client_t *client, char *s, ...)
static void NET_SV_SendConsoleMessage(net_client_t *client, const char *s, ...)
{
char buf[1024];
va_list args;