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.
This commit is contained in:
parent
ccb175dce6
commit
f1267ca375
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue