Skip to content

Commit

Permalink
Staging: batman-adv: fix minor orig table layout bug
Browse files Browse the repository at this point in the history
The originator table contained a TAB instead of a space which broke
the layout as well as the batctl parser.

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Marek Lindner authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 9bbf1ec commit b665aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/batman-adv/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static int proc_originators_read(struct seq_file *seq, void *offset)
addr_to_string(orig_str, orig_node->orig);
addr_to_string(router_str, orig_node->router->addr);

seq_printf(seq, "%-17s (%3i) %17s [%10s]:",
seq_printf(seq, "%-17s (%3i) %17s [%10s]:",
orig_str, orig_node->router->tq_avg,
router_str, orig_node->router->if_incoming->dev);

Expand Down

0 comments on commit b665aac

Please sign in to comment.