aboutsummaryrefslogtreecommitdiff
path: root/src/irc.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-04-13 02:08:22 -0400
committerB. Watson <urchlay@slackware.uk>2026-04-13 02:08:33 -0400
commitf844caecef4174f1fd52c1e810a836489935a01d (patch)
tree537298c8d6b3beb2fc47f3347a66ed03d067c80e /src/irc.c
parent172db1bcaa88b51326e9b788022985c97276dbfb (diff)
downloadfujinet-chat-f844caecef4174f1fd52c1e810a836489935a01d.tar.gz
Save a tiny bit of space. 7701 bytes free.
Diffstat (limited to 'src/irc.c')
-rw-r--r--src/irc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc.c b/src/irc.c
index f87e9f2..97ca2d8 100644
--- a/src/irc.c
+++ b/src/irc.c
@@ -201,9 +201,9 @@ static void do_ctcp(char is_notice) {
txbuf_set_str3("NOTICE ", msg_src, " :\x01");
txbuf_append_str(ctcp_type);
- txbuf_append_chr(' ');
+ txbuf_append_spc();
txbuf_append_str(resp);
- txbuf_append_chr('\x01');
+ txbuf_append_01();
txbuf_send();
}
}