aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-04-01 01:37:51 -0400
committerB. Watson <urchlay@slackware.uk>2026-04-01 01:37:51 -0400
commit3fde0115504756dedf2ff352da5bf7ef1933cf65 (patch)
treead9406b1d7a1360dda47d9ff30c335c53c8b1c2a
parente3ea7495e8eed71c0f5504c7ae51ce205b2d5cea (diff)
downloadfujinet-chat-3fde0115504756dedf2ff352da5bf7ef1933cf65.tar.gz
Fix spacing of "<nick> joined" message.
-rw-r--r--src/irc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc.c b/src/irc.c
index 0ca0b01..63dc331 100644
--- a/src/irc.c
+++ b/src/irc.c
@@ -258,12 +258,12 @@ static void do_notice(void) {
static void do_join(void) {
ind_act_join();
if(streq_i(conf->nick, msg_src)) {
- scr_print_active("You ");
+ scr_print_active("You");
} else {
scr_print_active("\x02=\x02");
scr_print_active(msg_src);
}
- scr_print_active("joined ");
+ scr_print_active(" joined ");
scr_print_active(msg_dest);
scr_eol_active();
}