PCI: Fix a typo

Fixes build with PCI_DEBUG defined.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
master
Blue Swirl 2010-01-10 20:54:38 +00:00
parent bae7b517a2
commit 0b987f1934
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}