Module: ngircd.git Branch: master Commit: f1267ca375b0b754bb466e6c95713566072d3345 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=f1267...
Author: Alexander Barton alex@barton.de Date: Sun Oct 24 13:41:51 2010 +0200
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 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index 905799e..8f86e80 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))
ngircd-commits@lists.barton.de