diff options
Diffstat (limited to 'tools/bpf/bpftool/prog.c')
-rw-r--r-- | tools/bpf/bpftool/prog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c index 5302ee282409..9785244acc7b 100644 --- a/tools/bpf/bpftool/prog.c +++ b/tools/bpf/bpftool/prog.c | |||
@@ -357,10 +357,9 @@ static void print_prog_plain(struct bpf_prog_info *info, int fd) | |||
357 | if (!hash_empty(prog_table.table)) { | 357 | if (!hash_empty(prog_table.table)) { |
358 | struct pinned_obj *obj; | 358 | struct pinned_obj *obj; |
359 | 359 | ||
360 | printf("\n"); | ||
361 | hash_for_each_possible(prog_table.table, obj, hash, info->id) { | 360 | hash_for_each_possible(prog_table.table, obj, hash, info->id) { |
362 | if (obj->id == info->id) | 361 | if (obj->id == info->id) |
363 | printf("\tpinned %s\n", obj->path); | 362 | printf("\n\tpinned %s", obj->path); |
364 | } | 363 | } |
365 | } | 364 | } |
366 | 365 | ||