diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-08 20:44:53 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-08 20:44:53 +0000 |
commit | 219262e760e27dcce2d10090561f8a99f8a69999 (patch) | |
tree | 27fd6efc5d03f1be638c8bc3815f696666edd09b /modules | |
parent | 0fd3668575c995badf2bd44d3e8ce6472a857c48 (diff) |
- m_capab(): fixed compile warning
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1983 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_capab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_capab.c b/modules/m_capab.c index 8cf8464..39213e4 100644 --- a/modules/m_capab.c +++ b/modules/m_capab.c @@ -41,7 +41,7 @@ static void mr_capab(struct Client *client_p, struct Client *source_p, int parc, char *parv[]) { - unsigned int i = 0; + int i = 0; unsigned int cap = 0; char *p = NULL; char *s = NULL; |