Skip to content

Commit

Permalink
ipv6: trivial, add bracket for the if block
Browse files Browse the repository at this point in the history
The "else" block is on several lines and use bracket.

Signed-off-by: Florent Fourcot <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
ffourcot authored and davem330 committed Nov 4, 2014
1 parent 05006e8 commit 869ba98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/ipv6/ip6_flowlabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,10 +769,10 @@ static void ip6fl_seq_stop(struct seq_file *seq, void *v)
static int ip6fl_seq_show(struct seq_file *seq, void *v)
{
struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
if (v == SEQ_START_TOKEN)
if (v == SEQ_START_TOKEN) {
seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n",
"Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt");
else {
} else {
struct ip6_flowlabel *fl = v;
seq_printf(seq,
"%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n",
Expand Down

0 comments on commit 869ba98

Please sign in to comment.