Skip to content

Commit

Permalink
Don't use experimental feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Trundle committed Nov 18, 2024
1 parent f137a12 commit 56799a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ impl From<u32> for FirmwareError {
fn from(error: u32) -> FirmwareError {
match error {
0x00 => FirmwareError::IoError(io::Error::last_os_error()),
0x01..0x027 => FirmwareError::KnownSevError(error.into()),
0x01..=0x026 => FirmwareError::KnownSevError(error.into()),
_ => FirmwareError::UnknownSevError(error),
}
}
Expand Down

0 comments on commit 56799a3

Please sign in to comment.