net: Make NET_SV_SendConsoleMessage 's' parameter const
This commit is contained in:
parent
0032332dac
commit
30673d2389
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue