diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-01-10 20:54:38 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-01-10 20:54:38 +0000 |
commit | 0b987f19342802dec38d0f257d2b5e0a0630a4ac (patch) | |
tree | b9d64892f9b3a7073335eaba08bd814e725a8006 | |
parent | bae7b517a21abfa703871eba2428182311177f16 (diff) | |
download | qemu-0b987f19342802dec38d0f257d2b5e0a0630a4ac.zip qemu-0b987f19342802dec38d0f257d2b5e0a0630a4ac.tar.gz qemu-0b987f19342802dec38d0f257d2b5e0a0630a4ac.tar.bz2 |
PCI: Fix a typo
Fixes build with PCI_DEBUG defined.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | hw/pci_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci_host.c b/hw/pci_host.c index eeb8dee..6289ead 100644 --- a/hw/pci_host.c +++ b/hw/pci_host.c @@ -56,7 +56,7 @@ void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len) if (!pci_dev) return; - PCI_DPRINTF("%s: %s: addr=%02"PRIx32" val=%08"PRI32x" len=%d\n", + PCI_DPRINTF("%s: %s: addr=%02" PRIx32 " val=%08" PRIx32 " len=%d\n", __func__, pci_dev->name, config_addr, val, len); pci_dev->config_write(pci_dev, config_addr, val, len); } |