2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-03 11:13:56 +08:00

selftests/bpf: Fix mix of tabs and spaces

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
This commit is contained in:
Bill Wendling 2020-03-20 13:15:10 -07:00 committed by Daniel Borkmann
parent c0fd336ea4
commit 1440e79293

View File

@ -125,6 +125,6 @@ void test_btf_dump() {
if (!test__start_subtest(t->name)) if (!test__start_subtest(t->name))
continue; continue;
test_btf_dump_case(i, &btf_dump_test_cases[i]); test_btf_dump_case(i, &btf_dump_test_cases[i]);
} }
} }