about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2010-10-24 13:41:51 +0200
committerAlexander Barton <alex@barton.de>2010-10-24 13:41:51 +0200
commitf1267ca375b0b754bb466e6c95713566072d3345 (patch)
treef3e5dcaebde9633a1e4498d0589110f4ceb274be
parentccb175dce6dc257c9baf561e8a9f704f26e49f17 (diff)
downloadngircd-f1267ca375b0b754bb466e6c95713566072d3345.tar.gz
ngircd-f1267ca375b0b754bb466e6c95713566072d3345.zip
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.
-rw-r--r--src/ngircd/irc-info.c2
1 files changed, 1 insertions, 1 deletions
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 <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))