diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-29 18:27:08 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-29 18:27:08 +0000 |
commit | 6ec6f84118228d925e8af04eed33d5adf2265fef (patch) | |
tree | 56acdab8f48c9960208e93305f4f418a8718c341 /include | |
parent | 4d45e1d9b2feecd408d1170b826a2f12a4ebea1e (diff) |
- get_member_status(), valid_wildcard(): constification
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2132 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r-- | include/channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.h b/include/channel.h index 8780dbe..089a33e 100644 --- a/include/channel.h +++ b/include/channel.h @@ -136,7 +136,7 @@ extern void free_channel_list(dlink_list *); extern void destroy_channel(struct Channel *); extern void set_channel_topic(struct Channel *, const char *, const char *, time_t, int); -extern const char *get_member_status(const struct Membership *, int); +extern const char *get_member_status(const struct Membership *, const int); extern struct Channel *make_channel(const char *); extern struct Membership *find_channel_link(struct Client *, struct Channel *); |