Change lookup_channel() channel argument to be const char *

This commit is contained in:
Kevin Easton
2017-04-16 16:03:01 +10:00
parent 274ba92c2e
commit 2eabfabc35
3 changed files with 3 additions and 3 deletions

View File

@@ -105,7 +105,7 @@ NickList *Nick, *n;
chan->totalnicks = 0;
}
extern ChannelList *BX_lookup_channel(char *channel, int server, int unlink)
ChannelList *BX_lookup_channel(const char *channel, int server, int unlink)
{
register ChannelList *chan = NULL,
*last = NULL;