chore: cargo +nightly clippy --fix -Z unstable-options
This commit is contained in:
committed by
Michael Vines
parent
3570b00560
commit
6514096a67
@ -28,7 +28,7 @@ fn main() {
|
||||
};
|
||||
let mut out = BufWriter::new(file);
|
||||
let sysc_re = Regex::new(r#"register_syscall_by_name\([[:space:]]*b"([^"]+)","#).unwrap();
|
||||
for caps in sysc_re.captures_iter(&text) {
|
||||
for caps in sysc_re.captures_iter(text) {
|
||||
writeln!(out, "{}", caps[1].to_string()).unwrap();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user