diff options
author | Florent Fourcot <florent.fourcot@enst-bretagne.fr> | 2014-11-04 17:01:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-04 17:10:19 -0500 |
commit | 869ba988fedb0fb9f4b0f18904623dc29775c503 (patch) | |
tree | 54d23620e921c57fc116e6a50ac98aed4514ac4a /net/ipv6 | |
parent | 05006e8c59050b2bab1bfe9cac631505d21122a3 (diff) |
ipv6: trivial, add bracket for the if block
The "else" block is on several lines and use bracket.
Signed-off-by: Florent Fourcot <florent.fourcot@enst-bretagne.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6_flowlabel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ip6_flowlabel.c b/net/ipv6/ip6_flowlabel.c index 3dd7d4ebd7cd..c14343715049 100644 --- a/net/ipv6/ip6_flowlabel.c +++ b/net/ipv6/ip6_flowlabel.c | |||
@@ -769,10 +769,10 @@ static void ip6fl_seq_stop(struct seq_file *seq, void *v) | |||
769 | static int ip6fl_seq_show(struct seq_file *seq, void *v) | 769 | static int ip6fl_seq_show(struct seq_file *seq, void *v) |
770 | { | 770 | { |
771 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); | 771 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); |
772 | if (v == SEQ_START_TOKEN) | 772 | if (v == SEQ_START_TOKEN) { |
773 | seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n", | 773 | seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n", |
774 | "Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt"); | 774 | "Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt"); |
775 | else { | 775 | } else { |
776 | struct ip6_flowlabel *fl = v; | 776 | struct ip6_flowlabel *fl = v; |
777 | seq_printf(seq, | 777 | seq_printf(seq, |
778 | "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n", | 778 | "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n", |