aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();
}