Remove unused "bool have_arg" from IRC_WHO()

This fixes:

 irc-info.c: In function ‘IRC_WHO’:
 irc-info:936:18: warning: variable ‘have_arg’ set but not used
This commit is contained in:
Alexander Barton 2012-01-02 00:56:31 +01:00
parent 70eb8219f5
commit f47904bf95
1 changed files with 1 additions and 2 deletions

View File

@ -933,7 +933,7 @@ IRC_WHO_Mask(CLIENT *Client, char *Mask, bool OnlyOps)
GLOBAL bool GLOBAL bool
IRC_WHO(CLIENT *Client, REQUEST *Req) IRC_WHO(CLIENT *Client, REQUEST *Req)
{ {
bool only_ops, have_arg; bool only_ops;
CHANNEL *chan; CHANNEL *chan;
assert (Client != NULL); assert (Client != NULL);
@ -944,7 +944,6 @@ IRC_WHO(CLIENT *Client, REQUEST *Req)
Client_ID(Client), Req->command); Client_ID(Client), Req->command);
only_ops = false; only_ops = false;
have_arg = false;
if (Req->argc == 2) { if (Req->argc == 2) {
if (strcmp(Req->argv[1], "o") == 0) if (strcmp(Req->argv[1], "o") == 0)