From 1d078f08cf6877ec3333a6a497ebe13acd572a84 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 1 Apr 2026 15:58:14 -0400 Subject: Save a few more bytes in irc.c. Now 5616 bytes free. --- src/irc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/irc.c b/src/irc.c index 80a910b..d29c137 100644 --- a/src/irc.c +++ b/src/irc.c @@ -724,7 +724,7 @@ static char service_minute_timer() { } } -int irc_read(void) { +char irc_read(void) { if(!trip) return 1; last_read_min = minutes; @@ -864,7 +864,7 @@ static char cur_is_query(void) { /* count backwards here, because the [server] screen is 0, it's the least interesting one. */ -char find_scr_with_status(int status) { +char find_scr_with_status(char status) { signed char i; for(i = MAX_SCREENS - 1; i != -1; i--) { -- cgit v1.2.3