diff --git a/crates/common/src/byte_length.rs b/crates/common/src/byte_length.rs index e452ca2..7af12fd 100644 --- a/crates/common/src/byte_length.rs +++ b/crates/common/src/byte_length.rs @@ -7,9 +7,9 @@ pub const BYTE_LENGTH_BYTE: usize = 1; pub const BYTE_LENGTH_X32: usize = 4; /// Native stack alignment size in bytes -#[cfg(not(feautre = "riscv-64"))] +#[cfg(not(feature = "riscv-64"))] pub const BYTE_LENGTH_STACK_ALIGN: usize = 4; -#[cfg(feautre = "riscv-64")] +#[cfg(feature = "riscv-64")] pub const BYTE_LENGTH_STACK_ALIGN: usize = 8; /// The x86_64 word byte-length.