0.2.15 - fix x86 32-bit path

This commit is contained in:
Jeremy Soller
2022-07-22 16:21:52 -06:00
parent 22a5a68472
commit aa7d36ed83
2 changed files with 2 additions and 2 deletions

View File

@@ -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 <jackpot51@gmail.com>"]

View File

@@ -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"))]