Skip to content

Commit 351b072

Browse files
committed
cargo fmt
1 parent bacd993 commit 351b072

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

rules/build.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ fn main() {
3535
.expect("rustls-ffi did not export its include dir (DEP_RUSTLS_FFI_INCLUDE)");
3636
let src = Path::new(&inc).join("rustls.h");
3737
let dst = crate_root.join("rustls").join("rustls.h");
38-
fs::copy(&src, &dst).unwrap_or_else(|e| {
39-
panic!("failed to copy {} to {}: {e}", src.display(), dst.display())
40-
});
38+
fs::copy(&src, &dst)
39+
.unwrap_or_else(|e| panic!("failed to copy {} to {}: {e}", src.display(), dst.display()));
4140

4241
// Generate modules that include absolute paths
4342
let mut buf = String::new();

0 commit comments

Comments
 (0)