Commit c8edb846 authored by David S. Miller's avatar David S. Miller

net/ipv4/arp.c: Fix compiler warning.

parent e7541f89
......@@ -1145,7 +1145,7 @@ struct arp_iter_state {
static struct neighbour *neigh_get_first(struct seq_file *seq)
{
struct arp_iter_state* state = seq->private;
struct neighbour *n;
struct neighbour *n = NULL;
state->is_pneigh = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment