summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/chanserv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chanserv.c b/src/chanserv.c
index 2b3415e97..d21359042 100644
--- a/src/chanserv.c
+++ b/src/chanserv.c
@@ -1419,7 +1419,7 @@ void expire_chans()
void cs_remove_nick(const NickCore * nc)
{
- int i, j;
+ int i, j, k;
ChannelInfo *ci, *next;
ChanAccess *ca;
AutoKick *akick;
@@ -1479,13 +1479,13 @@ void cs_remove_nick(const NickCore * nc)
akick->flags = 0;
akick->addtime = 0;
akick->u.nc = NULL;
-
+
/* Only one occurance can exist in every akick list.. ~ Viper */
break;
}
}
- /* Are there any akicks behind us?
+ /* Are there any akicks behind us?
* If so, move all following akicks.. ~ Viper */
if (j < ci->akickcount - 1) {
for (k = j + 1; k < ci->akickcount; j++, k++) {