mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
vmm: acpi: Use correct table name in error message
Fix a copy-paste error using the wrong table name in the assertion Signed-off-by: ninollei <ninollx@hotmail.com>
This commit is contained in:
@@ -780,7 +780,7 @@ pub fn create_acpi_tables(
|
||||
let slit_offset = srat_offset.checked_add(srat.len() as u64).unwrap();
|
||||
guest_mem
|
||||
.write_slice(slit.as_slice(), slit_offset)
|
||||
.expect("Error writing SRAT table");
|
||||
.expect("Error writing SLIT table");
|
||||
tables.push(slit_offset.0);
|
||||
|
||||
prev_tbl_len = slit.len() as u64;
|
||||
|
||||
Reference in New Issue
Block a user