aboutsummaryrefslogtreecommitdiffstats
path: root/tools/kcovfuzzer
diff options
context:
space:
mode:
Diffstat (limited to 'tools/kcovfuzzer')
-rw-r--r--tools/kcovfuzzer/kcovfuzzer.c2
1 files changed, 1 insertions, 1 deletions
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));