Forgot to constify

This commit is contained in:
JD Horelick 2010-02-23 02:53:19 -05:00
parent 3472ff3fec
commit 824455aba6
1 changed files with 1 additions and 1 deletions

View File

@ -1467,7 +1467,7 @@ check_channel_name_loc(struct Client *source_p, const char *name)
return 1;
}
void user_join(struct Client * client_p, struct Client * source_p, char * channels, char * keys)
void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys)
{
static char jbuf[BUFSIZE];
struct Channel *chptr = NULL;