dect
/
linux-2.6
Archived
13
0
Fork 0

netfilter: nf_conntrack_standalone: Fix set-but-unused variables.

The variable 'ret' is set but unused in ct_seq_show().

This was obviously meant to be used to propagate error codes
to the caller, so make it so.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2011-04-17 17:03:33 -07:00
parent d87d7fb381
commit d88d7de098
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ static int ct_seq_show(struct seq_file *s, void *v)
ret = 0;
release:
nf_ct_put(ct);
return 0;
return ret;
}
static const struct seq_operations ct_seq_ops = {