fixed src/emu/machine/nvram.c clang compilation (nw)

This commit is contained in:
Oliver Stöneberg 2014-02-25 12:43:58 +00:00
parent 5278254236
commit c4ba73f743

View File

@ -167,5 +167,5 @@ void nvram_device::determine_final_base()
// if we are region-backed for the default, find it now and make sure it's the right size
if (m_region != NULL && m_region->bytes() != m_length)
throw emu_fatalerror("NVRAM device '%s' has a default region, but it should be 0x%"I64FMT"X bytes", tag(), m_length);
throw emu_fatalerror("NVRAM device '%s' has a default region, but it should be 0x%"SIZETFMT"X bytes", tag(), m_length);
}