From aa7d36ed830cca6f517993788cd5327699ac9d23 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 22 Jul 2022 16:21:52 -0600 Subject: [PATCH] 0.2.15 - fix x86 32-bit path --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a4deb82..bd550cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_syscall" -version = "0.2.14" +version = "0.2.15" description = "A Rust library to access raw Redox system calls" license = "MIT" authors = ["Jeremy Soller "] diff --git a/src/lib.rs b/src/lib.rs index 050ee81..9c59398 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ mod arch; mod arch; #[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "x86"))] -#[path="arch/nonredox.rs"] +#[path="arch/x86.rs"] mod arch; #[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "x86_64"))]