From 5886820679ac7740ad4b403039a150930e1608ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 25 Jan 2015 15:13:11 +0100 Subject: [PATCH] irc: remove compiler warning about unused parameter in irc_channel_remove_account() --- src/plugins/irc/irc-channel.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/irc/irc-channel.c b/src/plugins/irc/irc-channel.c index 348e60a0b..1aebd529d 100644 --- a/src/plugins/irc/irc-channel.c +++ b/src/plugins/irc/irc-channel.c @@ -688,6 +688,9 @@ irc_channel_remove_account (struct t_irc_server *server, { struct t_irc_nick *ptr_nick; + /* make C compiler happy */ + (void) server; + if (channel->type == IRC_CHANNEL_TYPE_CHANNEL) { for (ptr_nick = channel->nicks; ptr_nick;