From: Alexander Barton Date: Sun, 24 Oct 2010 11:41:51 +0000 (+0200) Subject: Don't use PARAMS() macro for function implementations X-Git-Tag: rel-17-rc2~8 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=f1267ca375b0b754bb466e6c95713566072d3345 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. --- 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))