summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2015-12-20 10:20:12 +0100
committerSébastien Helleu <flashcode@flashtux.org>2015-12-20 10:20:12 +0100
commitda505c03924565823964d5873f9fbd9749d50f92 (patch)
treeccff0cb9f7c3f6fec81688735c78715f03514844 /src
parent971a90474f937dfff20669498c7dec60f316711d (diff)
downloadweechat-da505c03924565823964d5873f9fbd9749d50f92.zip
irc: fix long line
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-protocol.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index c6ade5644..f823a66f2 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -849,7 +849,8 @@ IRC_PROTOCOL_CALLBACK(join)
/* add nick in channel */
ptr_nick = irc_nick_new (server, ptr_channel, nick, address, NULL, 0,
- (pos_account) ? pos_account : NULL, (pos_realname) ? pos_realname : NULL);
+ (pos_account) ? pos_account : NULL,
+ (pos_realname) ? pos_realname : NULL);
/* rename the nick if it was in list with a different case */
irc_channel_nick_speaking_rename_if_present (server, ptr_channel, nick);