diff options
| author | Alexander Barton <alex@barton.de> | 2010-10-24 13:41:51 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2010-10-24 13:41:51 +0200 |
| commit | f1267ca375b0b754bb466e6c95713566072d3345 (patch) | |
| tree | f3e5dcaebde9633a1e4498d0589110f4ceb274be /src | |
| parent | ccb175dce6dc257c9baf561e8a9f704f26e49f17 (diff) | |
| download | ngircd-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.
Diffstat (limited to 'src')
| -rw-r--r-- | 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 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)) |