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:
Alexander Barton 2012-04-29 12:39:28 +02:00
parent f01b09ce84
commit a8aa8c6cbc
1 changed files with 1 additions and 1 deletions

View File

@ -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);