scx_utils: Fix build args

Fix args to bpf_builder, existing warnings display for
"-Wno-compare-distinct-pointer-types'".

Signed-off-by: Daniel Hodges <hodges.daniel.scott@gmail.com>
This commit is contained in:
Daniel Hodges 2024-08-06 19:10:34 -07:00
parent 0197649af5
commit 459ed82e6c

View File

@ -338,7 +338,7 @@ impl BpfBuilder {
// Assemble cflags.
let mut cflags: Vec<String> =
["-g", "-O2", "-Wall", "-Wno-compare-distinct-pointer-types'"]
["-g", "-O2", "-Wall", "-Wno-compare-distinct-pointer-types"]
.into_iter()
.map(|x| x.into())
.collect();