summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-11-05 15:13:50 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2014-11-05 15:13:50 +0100
commita19283f054d0f748c2fc18f243a224b6f55e31cc (patch)
tree5c957bbcc77c878180444466f12da54fb6354b2f
parentf975ef079a135fe3bdc19c0a70cd41178ffff5d8 (diff)
Compile fix (nw)
-rw-r--r--src/emu/machine/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/pci.c b/src/emu/machine/pci.c
index 0d1fdc72e30..33baec75ad8 100644
--- a/src/emu/machine/pci.c
+++ b/src/emu/machine/pci.c
@@ -58,7 +58,7 @@ void pci_device::map_config(UINT8 device, address_space *config_space)
void pci_device::add_map(UINT64 size, int flags, address_map_delegate &map)
{
- logerror("Device %s (%s) has 0x%llx bytes of %s named %s\n", tag(), name(), size, flags & M_IO ? "io" : "memory", map.name());
+ logerror("Device %s (%s) has 0x%" I64FMT "x bytes of %s named %s\n", tag(), name(), size, flags & M_IO ? "io" : "memory", map.name());
}
agp_device::agp_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)