aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/complete.c b/src/complete.c
index 1af6930..46073c4 100644
--- a/src/complete.c
+++ b/src/complete.c
@@ -25,7 +25,7 @@ char (*add_to)[25] = comp_pm_nicks;
static char pm_nick_pos = 0; /* insertion point for _add() */
static void add_list(const char *n) {
- int i;
+ char i;
for(i = 0; i < 25; i++)
if(strneq_i(n, add_to[i], 24))
@@ -47,7 +47,7 @@ void comp_add_pm_chan(const char *n) {
}
char match(const char *p, const char *q) {
- int len;
+ char len;
while(*p == '#') p++;
while(*q == '#') q++;