diff options
author | Joe Perches <joe@perches.com> | 2015-03-16 14:25:17 -0400 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-03-18 05:51:35 -0400 |
commit | 1ca9e41770cba46dcc7c2a9c6ac28350ed866695 (patch) | |
tree | 6551da6c3f5dfac06aeee74bedbf29ebf204094d /net/ipv4 | |
parent | e4bb9bcbfb7d67431dfd49860f62770a7f40193b (diff) |
netfilter: Remove uses of seq_<foo> return values
The seq_printf/seq_puts/seq_putc return values, because they
are frequently misused, will eventually be converted to void.
See: commit 1f33c41c03da ("seq_file: Rename seq_overflow() to
seq_has_overflowed() and make public")
Miscellanea:
o realign arguments
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c index a460a87e14f8..f0dfe92a00d6 100644 --- a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c +++ b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c | |||
@@ -300,7 +300,9 @@ static int exp_seq_show(struct seq_file *s, void *v) | |||
300 | __nf_ct_l3proto_find(exp->tuple.src.l3num), | 300 | __nf_ct_l3proto_find(exp->tuple.src.l3num), |
301 | __nf_ct_l4proto_find(exp->tuple.src.l3num, | 301 | __nf_ct_l4proto_find(exp->tuple.src.l3num, |
302 | exp->tuple.dst.protonum)); | 302 | exp->tuple.dst.protonum)); |
303 | return seq_putc(s, '\n'); | 303 | seq_putc(s, '\n'); |
304 | |||
305 | return 0; | ||
304 | } | 306 | } |
305 | 307 | ||
306 | static const struct seq_operations exp_seq_ops = { | 308 | static const struct seq_operations exp_seq_ops = { |