mirror of
https://github.com/osmarks/ngircd.git
synced 2025-02-23 12:40:01 +00:00
irc-cap.c: mark arguments of Handle_CAP_ACK() as "unused"
This fixes irc-cap.c: In function ‘Handle_CAP_ACK’: irc-cap.c:163: warning: unused parameter ‘Client’ irc-cap.c:163: warning: unused parameter ‘Arg’
This commit is contained in:
parent
f01b09ce84
commit
a8aa8c6cbc
@ -160,7 +160,7 @@ Handle_CAP_REQ(CLIENT *Client, char *Arg)
|
||||
* @returns CONNECTED or DISCONNECTED.
|
||||
*/
|
||||
bool
|
||||
Handle_CAP_ACK(CLIENT *Client, char *Arg)
|
||||
Handle_CAP_ACK(UNUSED CLIENT *Client, UNUSED char *Arg)
|
||||
{
|
||||
assert(Client != NULL);
|
||||
assert(Arg != NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user