From 0b64a1bbb8c8734842776163c6246b14c243c9c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Mon, 29 Apr 2024 17:57:39 +0200 Subject: [PATCH] fix(virtio/pci): error message typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/drivers/virtio/transport/pci.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/virtio/transport/pci.rs b/src/drivers/virtio/transport/pci.rs index 24717872b2..6d3461ad4a 100644 --- a/src/drivers/virtio/transport/pci.rs +++ b/src/drivers/virtio/transport/pci.rs @@ -224,7 +224,7 @@ impl PciCap { /// Returns a reference to the actual structure inside the PCI devices memory space. fn map_common_cfg(&self) -> Option> { if self.bar.length < u64::from(self.length + self.offset) { - error!("Common config of with id {} of device {:x}, does not fit into memory specified by bar {:x}!", + error!("Common config of the capability with id {} of device {:x} does not fit into memory specified by bar {:x}!", self.id, self.origin.dev_id, self.bar.index