net: Make NET_SV_BroadcastMessage 's' parameter const

This commit is contained in:
Turo Lamminen 2018-12-11 19:37:59 +02:00
parent 4488827a39
commit 41df97b38e

View file

@ -204,7 +204,7 @@ static void NET_SV_SendConsoleMessage(net_client_t *client, char *s, ...)
// Send a message to all clients // Send a message to all clients
static void NET_SV_BroadcastMessage(char *s, ...) static void NET_SV_BroadcastMessage(const char *s, ...)
{ {
char buf[1024]; char buf[1024];
va_list args; va_list args;