mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Use g_string_append() instead of g_string_append_c() for string.
This commit is contained in:
parent
9586766d87
commit
ca363efe00
@ -169,7 +169,7 @@ static void dump_join(IRC_CHANNEL_REC *channel, CLIENT_REC *client)
|
||||
NICK_REC *nick = tmp->data;
|
||||
|
||||
if (str->len >= 500) {
|
||||
g_string_append_c(str, '\r\n');
|
||||
g_string_append(str, "\r\n");
|
||||
proxy_outdata(client, "%s", str->str);
|
||||
create_names_start(str, channel, client);
|
||||
first = TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user