aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-25 06:15:51 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-25 06:15:51 -0400
commit4f56070518b0cdb48c9b3af5958a8274b95c6d6b (patch)
tree2af44907d2555d4f866f0692dcc6babf8676602d /src/irc.h
parentdc292b54c8bea6ea5317ff334bd8c65248d94a6b (diff)
downloadfujinet-chat-4f56070518b0cdb48c9b3af5958a8274b95c6d6b.tar.gz
Save another 51 bytes by making msg_argcount a char (it never goes above 7 anyway).
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc.h b/src/irc.h
index 6a4770a..2cb62cc 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -49,7 +49,7 @@ void fn_disconnect(void);
extern char numbuf[10];
extern char *msg_src, *msg_cmd, *msg_dest, *msg_text;
extern char *msg_args[MAX_MSG_ARGS];
-extern int msg_argcount;
+extern char msg_argcount;
extern char irc_away;
extern char bell_type;
extern char start_latch;