summaryrefslogtreecommitdiff
path: root/userland/irc
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-03-25 21:02:58 +0100
committerAnton Kling <anton@kling.gg>2024-03-25 21:04:10 +0100
commit3deb2df8e62a5f0a5535ee734a5aa13b0959f53f (patch)
treeaf8841076c95ae3de7dcd4a006026be2607a0fbf /userland/irc
parent6baa733f5682f660143c851a635a53dc2c2df7ae (diff)
Random changes
Diffstat (limited to 'userland/irc')
-rw-r--r--userland/irc/irc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/userland/irc/irc.c b/userland/irc/irc.c
index 297c332..6bdbce5 100644
--- a/userland/irc/irc.c
+++ b/userland/irc/irc.c
@@ -259,7 +259,8 @@ void handle_msg(struct irc_server *server, struct sv msg) {
sb_append_sv(&user_list_message, channel);
sb_append(&user_list_message, ": ");
sb_append_sv(&user_list_message, command_parameters);
- irc_add_message(server, channel, C_TO_SV("*"), SB_TO_SV(user_list_message));
+ irc_add_message(server, channel, C_TO_SV("*"),
+ SB_TO_SV(user_list_message));
sb_free(&user_list_message);
}
}