summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-25 21:10:08 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-25 21:10:08 +0000
commit0f3dcc548fc79425955f1e4611565bdf70831d34 (patch)
tree1f1532b5103d88ebb5aee1e26326b7c79abaa169 /src
parent6e56a2b84df8b77b7119c4774d8d5fce708d71f9 (diff)
- ms_bmask(): made mode_type an unsigned int type
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3043 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r--src/channel_mode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel_mode.c b/src/channel_mode.c
index c50fda8..49e0a64 100644
--- a/src/channel_mode.c
+++ b/src/channel_mode.c
@@ -101,7 +101,7 @@ check_string(char *s)
*/
int
-add_id(struct Client *client_p, struct Channel *chptr, char *banid, int type)
+add_id(struct Client *client_p, struct Channel *chptr, char *banid, unsigned int type)
{
dlink_list *list = NULL;
dlink_node *ban = NULL;
@@ -210,7 +210,7 @@ add_id(struct Client *client_p, struct Channel *chptr, char *banid, int type)
* side effects -
*/
static int
-del_id(struct Channel *chptr, char *banid, int type)
+del_id(struct Channel *chptr, char *banid, unsigned int type)
{
dlink_list *list;
dlink_node *ban;