Skip to content

Commit 3d069a3

Browse files
committed
chore: address clippy warnings
1 parent 96b2de5 commit 3d069a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/batcher/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn main() {
2626

2727
go_build.status().expect("Go build failed");
2828

29-
println!("cargo:rerun-if-changed={}", GO_SRC);
29+
println!("cargo:rerun-if-changed={GO_SRC}");
3030
println!(
3131
"cargo:rustc-link-search=native={}",
3232
out_dir.to_str().unwrap()
@@ -36,5 +36,5 @@ fn main() {
3636
println!("cargo:rustc-link-arg=-Wl,--allow-multiple-definition");
3737
}
3838

39-
println!("cargo:rustc-link-lib=static={}", GO_LIB);
39+
println!("cargo:rustc-link-lib=static={GO_LIB}");
4040
}

0 commit comments

Comments
 (0)