fix: use syscall::error::Error (not redox_syscall)

This commit is contained in:
Red Bear OS
2026-06-29 16:04:57 +03:00
parent ee190a5269
commit 7ad5ef4e97
+1 -1
View File
@@ -119,7 +119,7 @@ pub enum DmiError {
/// in a way that suggests a corrupt entry.
InvalidTableAddress,
/// Mapping physical memory failed.
Map(redox_syscall::error::Error),
Map(syscall::error::Error),
/// A structure was so malformed that walking must stop.
MalformedTable,
}