Skip to content

Commit 0c46b35

Browse files
committed
Remove useless format!
1 parent 1bf2e85 commit 0c46b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/minion-ffi/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn main() {
22
let crate_root = std::env::var("CARGO_MANIFEST_DIR").unwrap();
3-
let out_file = format!("../../target/minion-ffi.h"); //TODO better path
3+
let out_file = "../../target/minion-ffi.h".to_string(); //TODO better path
44
cbindgen::generate(crate_root)
55
.expect("was unable to generate bindings")
66
.write_to_file(out_file);

0 commit comments

Comments
 (0)