diff options
author | Andrii Nakryiko <andriin@fb.com> | 2019-04-25 15:30:11 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-04-25 21:45:14 -0700 |
commit | 8ed1875bf3a77d1653b895e41774aec9a341a97f (patch) | |
tree | 3d13ca7dc8dd49fbd4b0e02f969daeee66d76836 /tools/bpf | |
parent | 4a714feefd99c25c7304b43ac58c9d5c0304e7cb (diff) | |
download | linux-8ed1875bf3a77d1653b895e41774aec9a341a97f.tar.gz linux-8ed1875bf3a77d1653b895e41774aec9a341a97f.tar.bz2 linux-8ed1875bf3a77d1653b895e41774aec9a341a97f.zip |
bpftool: fix indendation in bash-completion/bpftool
Fix misaligned default case branch for `prog dump` sub-command.
Reported-by: Quentin Monnet <quentin.monnet@netronome.com>
Cc: Yonghong Song <yhs@fb.com>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/bpf')
-rw-r--r-- | tools/bpf/bpftool/bash-completion/bpftool | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tools/bpf/bpftool/bash-completion/bpftool b/tools/bpf/bpftool/bash-completion/bpftool index bca91d04ed35..50e402a5a9c8 100644 --- a/tools/bpf/bpftool/bash-completion/bpftool +++ b/tools/bpf/bpftool/bash-completion/bpftool @@ -273,17 +273,17 @@ _bpftool() "$cur" ) ) return 0 ;; - *) - _bpftool_once_attr 'file' - if _bpftool_search_list 'xlated'; then - COMPREPLY+=( $( compgen -W 'opcodes visual linum' -- \ - "$cur" ) ) - else - COMPREPLY+=( $( compgen -W 'opcodes linum' -- \ - "$cur" ) ) - fi - return 0 - ;; + *) + _bpftool_once_attr 'file' + if _bpftool_search_list 'xlated'; then + COMPREPLY+=( $( compgen -W 'opcodes visual linum' -- \ + "$cur" ) ) + else + COMPREPLY+=( $( compgen -W 'opcodes linum' -- \ + "$cur" ) ) + fi + return 0 + ;; esac ;; pin) |