diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-25 21:10:08 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-25 21:10:08 +0000 |
commit | 0f3dcc548fc79425955f1e4611565bdf70831d34 (patch) | |
tree | 1f1532b5103d88ebb5aee1e26326b7c79abaa169 /modules | |
parent | 6e56a2b84df8b77b7119c4774d8d5fce708d71f9 (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 'modules')
-rw-r--r-- | modules/core/m_mode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/m_mode.c b/modules/core/m_mode.c index a4da839..608226d 100644 --- a/modules/core/m_mode.c +++ b/modules/core/m_mode.c @@ -177,7 +177,7 @@ ms_bmask(struct Client *client_p, struct Client *source_p, int parc, char *parv[ char banbuf[IRCD_BUFSIZE]; struct Channel *chptr; char *s, *t, *mbuf, *pbuf; - long mode_type; + unsigned int mode_type = 0; int mlen, tlen; int modecount = 0; |