diff options
author | Marek Lindner <mareklindner@neomailbox.ch> | 2015-07-17 22:25:59 +0800 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2015-08-25 00:12:24 +0200 |
commit | 854d2a63de86a769db4dbed75b660f544b3c0c7a (patch) | |
tree | 7f8ea4da14b2c8ea681571b87e9c07ce0d710ad7 /net/batman-adv/main.c | |
parent | 87b40f534d2a266eec55a897e9a93f3b022c901d (diff) | |
download | linux-854d2a63de86a769db4dbed75b660f544b3c0c7a.tar.bz2 |
batman-adv: beautify supported routing algorithm list
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Diffstat (limited to 'net/batman-adv/main.c')
-rw-r--r-- | net/batman-adv/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 50fc07b9d353..e61c5f3633d0 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -584,7 +584,7 @@ int batadv_algo_seq_print_text(struct seq_file *seq, void *offset) seq_puts(seq, "Available routing algorithms:\n"); hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) { - seq_printf(seq, "%s\n", bat_algo_ops->name); + seq_printf(seq, " * %s\n", bat_algo_ops->name); } return 0; |