1
0
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:
Alexander Færøy 2015-09-20 21:12:07 +02:00
parent ca363efe00
commit 1079ad46d2
No known key found for this signature in database
GPG Key ID: E15081D5D3C3DB53

View File

@ -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);