]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
selftests/bpf: Fix mix of tabs and spaces
authorBill Wendling <morbo@google.com>
Fri, 20 Mar 2020 20:15:10 +0000 (13:15 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 20 Mar 2020 20:46:12 +0000 (21:46 +0100)
Clang's -Wmisleading-indentation warns about misleading indentations if
there's a mixture of spaces and tabs. Remove extraneous spaces.

Signed-off-by: Bill Wendling <morbo@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20200320201510.217169-1-morbo@google.com
tools/testing/selftests/bpf/prog_tests/btf_dump.c

index 7390d3061065a1bf0b8b26eee1d3cf6e3f6ddfbd..cb33a7ee4e04f0f62e21b9ea5c815b9ba3f1a746 100644 (file)
@@ -125,6 +125,6 @@ void test_btf_dump() {
                if (!test__start_subtest(t->name))
                        continue;
 
-                test_btf_dump_case(i, &btf_dump_test_cases[i]);
+               test_btf_dump_case(i, &btf_dump_test_cases[i]);
        }
 }