mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Use g_string_append() instead of g_string_append_c() for string.
This commit is contained in:
parent
ca363efe00
commit
1079ad46d2
@ -186,7 +186,7 @@ static void dump_join(IRC_CHANNEL_REC *channel, CLIENT_REC *client)
|
||||
}
|
||||
g_slist_free(nicks);
|
||||
|
||||
g_string_append_c(str, '\r\n');
|
||||
g_string_append(str, "\r\n");
|
||||
proxy_outdata(client, "%s", str->str);
|
||||
g_string_free(str, TRUE);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user