Skip to content

Commit a9f9fbe

Browse files
committed
Fix syntax
1 parent 88704cc commit a9f9fbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/uefi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn efi_main(image: Handle, st: SystemTable<Boot>) -> Status {
6464
// if no ACPI2 RSDP is found, look for a ACPI1 RSDP
6565
let rsdp = acpi2_rsdp
6666
.or_else(|| config_entries.find(|entry| matches!(entry.guid, cfg::ACPI_GUID)));
67-
rsdp.map(|entry| PhysAddr::new(entry.address as u64));
67+
rsdp.map(|entry| PhysAddr::new(entry.address as u64))
6868
},
6969
};
7070

0 commit comments

Comments
 (0)