Skip to content

Commit bb33e30

Browse files
committed
bless fmt
Signed-off-by: onur-ozkan <[email protected]>
1 parent a1af860 commit bb33e30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3341,7 +3341,9 @@ impl Build {
33413341
// Ref: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/a/ar.html
33423342
name = match target.arch {
33433343
"i586" => format!("ntox86-{}", tool).into(),
3344-
"x86" | "aarch64" | "x86_64" => format!("nto{}-{}", target.arch, tool).into(),
3344+
"x86" | "aarch64" | "x86_64" => {
3345+
format!("nto{}-{}", target.arch, tool).into()
3346+
}
33453347
_ => {
33463348
return Err(Error::new(
33473349
ErrorKind::InvalidTarget,

0 commit comments

Comments
 (0)