From f1267ca375b0b754bb466e6c95713566072d3345 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 24 Oct 2010 13:41:51 +0200 Subject: [PATCH] Don't use PARAMS() macro for function implementations The PARAMS() macro is only needed for function prototypes; don't use it for the actual implementations. --- src/ngircd/irc-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index 905799eb..8f86e805 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -1337,7 +1337,7 @@ IRC_Send_NAMES( CLIENT *Client, CHANNEL *Chan ) * See for details. */ GLOBAL bool -IRC_Send_ISUPPORT PARAMS((CLIENT * Client)) +IRC_Send_ISUPPORT(CLIENT * Client) { if (!IRC_WriteStrClient(Client, RPL_ISUPPORT1_MSG, Client_ID(Client), Conf_MaxJoins)) -- 2.39.2