Skip to content

Commit e62fbf3

Browse files
committed
uefi: Simplify debug! macro
1 parent 7ba95c3 commit e62fbf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uefi/src/proto/pci/region.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ where
5353
proto: &'p PciRootBridgeIoProtocol,
5454
) -> Self {
5555
let end = device_address + length as u64;
56-
debug!("Mapped new region [0x{:X}..0x{:X}]", device_address, end);
56+
debug!("Mapped new region [0x{device_address:X}..0x{end:X}]");
5757
Self {
5858
region: PciRegion {
5959
device_address,

0 commit comments

Comments
 (0)