summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@0x90.dk>2015-09-20 21:01:25 +0200
committerAlexander Færøy <ahf@0x90.dk>2015-09-20 21:01:25 +0200
commitca363efe00a05682acf9de828d55e991657b9e4b (patch)
tree2f99491f3aa885216adc9203ac31cbdc3c4a8aae /src
parent9586766d87820bdfa9e7cbe805f5ed4b7b0378e5 (diff)
downloadirssi-ca363efe00a05682acf9de828d55e991657b9e4b.zip
Use g_string_append() instead of g_string_append_c() for string.
Diffstat (limited to 'src')
-rw-r--r--src/irc/proxy/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/proxy/dump.c b/src/irc/proxy/dump.c
index 455a2fe3..05059360 100644
--- a/src/irc/proxy/dump.c
+++ b/src/irc/proxy/dump.c
@@ -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;