From 6706102c41b795196a44b5075282510a8413a573 Mon Sep 17 00:00:00 2001 From: Pavel Tvrdik Date: Tue, 26 Apr 2016 15:49:17 +0200 Subject: [PATCH] BIRD Client: remove unused variables --- client/commands.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/commands.c b/client/commands.c index 26068859..4809727c 100644 --- a/client/commands.c +++ b/client/commands.c @@ -111,8 +111,6 @@ static struct cmd_node * cmd_find_abbrev(struct cmd_node *root, char *cmd, int len, int *pambiguous) { struct cmd_node *m, *best = NULL, *best2 = NULL; - list *l_syms = cli_get_symbol_list(); - struct cli_symbol *sym; *pambiguous = 0; for(m=root->son; m; m=m->sibling) @@ -221,7 +219,7 @@ cmd_find_common_match(struct cmd_node *root, char *cmd, int len, int *pcount, ch { struct cmd_node *m; int max_common_len; - int best_prio, i; + int best_prio; *pcount = 0; max_common_len = -1;