From 6ec38e77d7b0adb64e37e9faa82624cda2576335 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 1 Apr 2026 22:21:20 -0400 Subject: Change a couple ints to chars, save ~50 bytes. 5672 bytes free. --- src/complete.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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++; -- cgit v1.2.3