From a19283f054d0f748c2fc18f243a224b6f55e31cc Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 5 Nov 2014 15:13:50 +0100 Subject: Compile fix (nw) --- src/emu/machine/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3