Ver código fonte

ipv4: Fix unused variable warnings in fib_table_flush_external.

net/ipv4/fib_trie.c: In function ‘fib_table_flush_external’:
net/ipv4/fib_trie.c:1572:6: warning: unused variable ‘found’ [-Wunused-variable]
  int found = 0;
      ^
net/ipv4/fib_trie.c:1571:16: warning: unused variable ‘slen’ [-Wunused-variable]
  unsigned char slen;
                ^

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 10 anos atrás
pai
commit
23375a0fd5
1 arquivos alterados com 0 adições e 2 exclusões
  1. 0 2
      net/ipv4/fib_trie.c

+ 0 - 2
net/ipv4/fib_trie.c

@@ -1568,8 +1568,6 @@ void fib_table_flush_external(struct fib_table *tb)
 	struct fib_alias *fa;
 	struct fib_alias *fa;
 	struct tnode *n, *pn;
 	struct tnode *n, *pn;
 	unsigned long cindex;
 	unsigned long cindex;
-	unsigned char slen;
-	int found = 0;
 
 
 	n = rcu_dereference(t->trie);
 	n = rcu_dereference(t->trie);
 	if (!n)
 	if (!n)