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