arch: preserve error chain for smbios

On-behalf-of: SAP philipp.schuster@sap.com
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
This commit is contained in:
Philipp Schuster
2026-06-02 06:42:57 +02:00
committed by Rob Bradford
parent 85109ebae0
commit 67a661aff0
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1282,7 +1282,7 @@ fn configure_pvh(
// Write the start_info struct to guest memory.
guest_mem
.write_obj(start_info, start_info_addr)
.map_err(|_| super::Error::StartInfoSetup)?;
.map_err(super::Error::StartInfoSetup)?;
Ok(())
}