Fix a warning about const with forward channels.

This commit is contained in:
Jilles Tjoelker 2012-01-08 16:23:18 +01:00
parent a14de124d6
commit d9af501aa8
3 changed files with 3 additions and 3 deletions

View file

@ -226,7 +226,7 @@ extern int is_banned(struct Channel *chptr, struct Client *who,
extern int is_quieted(struct Channel *chptr, struct Client *who,
struct membership *msptr, const char *, const char *);
extern int can_join(struct Client *source_p, struct Channel *chptr, char *key,
char **forward);
const char **forward);
extern struct membership *find_channel_membership(struct Channel *, struct Client *);
extern const char *find_channel_status(struct membership *msptr, int combine);