Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas committed Nov 4, 2023
1 parent 32910a0 commit 9ded99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/linux/cpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ fn get_cpu_arch() -> CpuArch {
.map(|c| *c as u8 as char)
.collect::<String>();

CpuArch::from(machine)
CpuArch::from(machine.as_ref())
} else {
CpuArch::UNKNOWN
}
Expand Down

0 comments on commit 9ded99a

Please sign in to comment.