Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/bpf: Remove second semicolon

There are statements with two semicolons. Remove the second one, it
is redundant.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20240315092654.2431062-1-colin.i.king@gmail.com

authored by

Colin Ian King and committed by
Daniel Borkmann
4c8644f8 e60adf51

+2 -2
+1 -1
tools/testing/selftests/bpf/benchs/bench_local_storage_create.c
··· 186 186 187 187 for (i = 0; i < batch_sz; i++) { 188 188 if (!pthd_results[i]) 189 - pthread_join(pthds[i], NULL);; 189 + pthread_join(pthds[i], NULL); 190 190 } 191 191 } 192 192
+1 -1
tools/testing/selftests/bpf/progs/iters.c
··· 673 673 674 674 static __noinline int sum(struct bpf_iter_num *it, int *arr, __u32 n) 675 675 { 676 - int *t, i, sum = 0;; 676 + int *t, i, sum = 0; 677 677 678 678 while ((t = bpf_iter_num_next(it))) { 679 679 i = *t;