From e0fac7da028e6a865a3cce0de6f63514e30a271e Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 13 Apr 2026 00:12:27 -0400 Subject: Another tiny change in cmd.c, save 2 more bytes. --- src/cmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cmd.c b/src/cmd.c index 21d0cf2..17d88c3 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -216,8 +216,10 @@ static void do_server_info(void) { static void send_ctcp(void) { txbuf_set_str3("PRIVMSG ", arg1, " :\x01"); txbuf_append_str(arg2); - if(arg3) - txbuf_append_str2(" ", arg3); + if(arg3) { + txbuf_append_chr(' '); + txbuf_append_str(arg3); + } txbuf_append_str("\x01"); txbuf_send(); } -- cgit v1.2.3