diff mbox series

[bpf-next] selftests/bpf: Fix mix of tabs and spaces

Message ID 20200320201510.217169-1-morbo@google.com
State Accepted
Delegated to: BPF Maintainers
Headers show
Series [bpf-next] selftests/bpf: Fix mix of tabs and spaces | expand

Commit Message

Bill Wendling March 20, 2020, 8:15 p.m. UTC
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>
---
 tools/testing/selftests/bpf/prog_tests/btf_dump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Daniel Borkmann March 20, 2020, 8:49 p.m. UTC | #1
On 3/20/20 9:15 PM, Bill Wendling wrote:
> 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>

Applied, thanks!
diff mbox series

Patch

diff --git a/tools/testing/selftests/bpf/prog_tests/btf_dump.c b/tools/testing/selftests/bpf/prog_tests/btf_dump.c
index 7390d3061065..cb33a7ee4e04 100644
--- a/tools/testing/selftests/bpf/prog_tests/btf_dump.c
+++ b/tools/testing/selftests/bpf/prog_tests/btf_dump.c
@@ -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]);
 	}
 }