From 19dcb43658c43f81d5f1d3c504689eabcbd2b822 Mon Sep 17 00:00:00 2001 From: Maxim Poliakovski Date: Sun, 7 Apr 2024 18:29:48 +0200 Subject: [PATCH] pcibase.h: remove superfluous spaces. --- devices/common/pci/pcibase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/common/pci/pcibase.h b/devices/common/pci/pcibase.h index 4553157..3d8cd07 100644 --- a/devices/common/pci/pcibase.h +++ b/devices/common/pci/pcibase.h @@ -233,7 +233,7 @@ inline uint32_t pci_cfg_log(uint32_t value, AccessDetails &details) { #define LOG_READ_NON_EXISTENT_PCI_DEVICE() \ LOG_F( \ ERROR, \ - "%s err: read attempt from non-existent PCI device %02x:%02x.%x @%02x.%c", \ + "%s err: read attempt from non-existent PCI device %02x:%02x.%x @%02x.%c", \ this->name.c_str(), bus_num, dev_num, fun_num, reg_offs + details.offset, \ SIZE_ARG(details.size) \ ) @@ -241,7 +241,7 @@ inline uint32_t pci_cfg_log(uint32_t value, AccessDetails &details) { #define LOG_WRITE_NON_EXISTENT_PCI_DEVICE() \ LOG_F( \ ERROR, \ - "%s err: write attempt to non-existent PCI device %02x:%02x.%x @%02x.%c = %0*x", \ + "%s err: write attempt to non-existent PCI device %02x:%02x.%x @%02x.%c = %0*x", \ this->name.c_str(), bus_num, dev_num, fun_num, reg_offs + details.offset, \ SIZE_ARG(details.size), \ details.size * 2, BYTESWAP_SIZED(value, details.size) \