Skip to content

Commit ac3faf0

Browse files
committed
fix incorrect import on aarch64-unknown-openbsd
1 parent 9312cd6 commit ac3faf0

File tree

1 file changed

+1
-1
lines changed
  • library/std_detect/src/detect/os/openbsd

1 file changed

+1
-1
lines changed

library/std_detect/src/detect/os/openbsd/aarch64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub(crate) fn detect_features() -> cache::Initializer {
3131
// the feature is available.
3232
let aa64pfr0 = sysctl64(&[libc::CTL_MACHDEP, CPU_ID_AA64PFR0]);
3333

34-
super::aarch64::parse_system_registers(aa64isar0, aa64isar1, aa64mmfr2, aa64pfr0)
34+
crate::detect::aarch64::parse_system_registers(aa64isar0, aa64isar1, aa64mmfr2, aa64pfr0)
3535
}
3636

3737
#[inline]

0 commit comments

Comments
 (0)