mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Use g_string_append() instead of g_string_append_c() for string.
This commit is contained in:
parent
9586766d87
commit
ca363efe00
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue