From 40036e99fc252de1dcaf9cc72a33a34e39b91b65 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 24 Apr 2025 09:20:16 +0200 Subject: all: format with clang-format-20 The tests began to fail after pushing the new env container. --- tools/kcovfuzzer/kcovfuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/kcovfuzzer/kcovfuzzer.c b/tools/kcovfuzzer/kcovfuzzer.c index 7b749b364..ded9dccc3 100644 --- a/tools/kcovfuzzer/kcovfuzzer.c +++ b/tools/kcovfuzzer/kcovfuzzer.c @@ -56,7 +56,7 @@ void bpf(const char* data, long size) attr.prog_type = BPF_PROG_TYPE_SOCKET_FILTER; attr.insns = (uint64_t)data; attr.insn_cnt = size / 8; - attr.license = (uint64_t) "GPL"; + attr.license = (uint64_t)"GPL"; cover_start(); int pfd = syscall(SYS_bpf, BPF_PROG_LOAD, &attr, sizeof(attr)); -- cgit mrf-deployment