diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-05 18:10:49 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-05 18:10:49 +0000 |
commit | 1d1309e8d2fbadea9e3acd6c8358a5c937a9d0dd (patch) | |
tree | 9d46d9ae9f7ffd881ed24be43fea1aae45f7c6d8 /modules | |
parent | 03eb4fcaf75895859acfd1384d036f28b4f01c80 (diff) |
- Backport -r1877 [Made find_capability() return an unsigned int]
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1953 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_capab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_capab.c b/modules/m_capab.c index 1f951e9..8cf8464 100644 --- a/modules/m_capab.c +++ b/modules/m_capab.c @@ -41,8 +41,8 @@ static void mr_capab(struct Client *client_p, struct Client *source_p, int parc, char *parv[]) { - int i; - int cap; + unsigned int i = 0; + unsigned int cap = 0; char *p = NULL; char *s = NULL; |