diff options
Diffstat (limited to 'src/emu/machine/pci.c')
-rw-r--r-- | src/emu/machine/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/pci.c b/src/emu/machine/pci.c index cce00129ce7..4100fee8a02 100644 --- a/src/emu/machine/pci.c +++ b/src/emu/machine/pci.c @@ -136,7 +136,7 @@ READ32_DEVICE_HANDLER( pci_32le_r ) } if (LOG_PCI) - logerror("pci_32le_r('%s'): offset=%d result=0x%08X\n", device->tag, offset, result); + logerror("pci_32le_r('%s'): offset=%d result=0x%08X\n", device->tag.cstr(), offset, result); return result; } @@ -150,7 +150,7 @@ WRITE32_DEVICE_HANDLER( pci_32le_w ) offset %= 2; if (LOG_PCI) - logerror("pci_32le_w('%s'): offset=%d data=0x%08X\n", device->tag, offset, data); + logerror("pci_32le_w('%s'): offset=%d data=0x%08X\n", device->tag.cstr(), offset, data); switch (offset) { |