Cast bus_space_t to a intmax_t and use %j to print it instead of

assuming it is size_t sized and using %z.
This commit is contained in:
Warner Losh 2010-03-29 17:25:06 +00:00
parent 784ae79476
commit 68d9da9140
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205843

View File

@ -168,8 +168,8 @@ malo_bar0_read4(struct malo_softc *sc, bus_size_t off)
static void
malo_bar0_write4(struct malo_softc *sc, bus_size_t off, uint32_t val)
{
DPRINTF(sc, MALO_DEBUG_FW, "%s: off 0x%zx val 0x%x\n",
__func__, off, val);
DPRINTF(sc, MALO_DEBUG_FW, "%s: off 0x%jx val 0x%x\n",
__func__, (intmax_t)off, val);
bus_space_write_4(sc->malo_io0t, sc->malo_io0h, off, val);
}