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