diff options
author | Alexander Færøy <ahf@0x90.dk> | 2015-09-20 21:12:07 +0200 |
---|---|---|
committer | Alexander Færøy <ahf@0x90.dk> | 2015-09-20 21:12:07 +0200 |
commit | 1079ad46d21198b26649c2a81a692781e22336aa (patch) | |
tree | 3320cf866e6a11908cfc0e3cc92b4728df61e2ef /src | |
parent | ca363efe00a05682acf9de828d55e991657b9e4b (diff) | |
download | irssi-1079ad46d21198b26649c2a81a692781e22336aa.zip |
Use g_string_append() instead of g_string_append_c() for string.
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/proxy/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/proxy/dump.c b/src/irc/proxy/dump.c index 05059360..e39c21a6 100644 --- a/src/irc/proxy/dump.c +++ b/src/irc/proxy/dump.c @@ -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); |