]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Don't use PARAMS() macro for function implementations
authorAlexander Barton <alex@barton.de>
Sun, 24 Oct 2010 11:41:51 +0000 (13:41 +0200)
committerAlexander Barton <alex@barton.de>
Sun, 24 Oct 2010 11:41:51 +0000 (13:41 +0200)
The PARAMS() macro is only needed for function prototypes;
don't use it for the actual implementations.

src/ngircd/irc-info.c

index 905799eb52fc21886bec08a44e4c88553d2ef7b0..8f86e805315f4294dc4a6583d8a2150fd51691aa 100644 (file)
@@ -1337,7 +1337,7 @@ IRC_Send_NAMES( CLIENT *Client, CHANNEL *Chan )
  * See <http://www.irc.org/tech_docs/005.html> 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))