Skip to content

Commit 677ea14

Browse files
committed
Formatting fixes
1 parent 63fae26 commit 677ea14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bindgen/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,8 @@ fn rust_to_clang_target(rust_target: &str) -> String {
692692
return clang_target;
693693
} else if rust_target.starts_with("riscv32imac-") {
694694
let mut clang_target = "riscv32-".to_owned();
695-
clang_target.push_str(rust_target.strip_prefix("riscv32imac-").unwrap());
695+
clang_target
696+
.push_str(rust_target.strip_prefix("riscv32imac-").unwrap());
696697
return clang_target;
697698
}
698699
rust_target.to_owned()

0 commit comments

Comments
 (0)