diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-06-13 00:24:04 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-06-13 00:24:04 +0200 |
commit | b4e4b958ac5db7f59f8a21c914b02d8d487de2a4 (patch) | |
tree | b26db7fa8fc79f6af214b526d34ac3b7785eaaab /irc_commands.c | |
parent | 5a5c926ec0dffa4b28895929c092089c2a9b9d9f (diff) |
Remove unused variable.
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c index dc59f7ee..75ab4dbd 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -320,7 +320,7 @@ static void irc_cmd_userhost( irc_t *irc, char **cmd ) static void irc_cmd_ison( irc_t *irc, char **cmd ) { user_t *u; - char buff[IRC_MAX_LINE], *s; + char buff[IRC_MAX_LINE]; int lenleft, i; buff[0] = '\0'; |