fix format specifier, previous commit touched a bit too much.

This commit is contained in:
Joris Vink 2022-03-15 13:47:35 +01:00
parent 5021eeb597
commit 0d305ecf5a
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ meminfo(void *ptr)
info = (struct meminfo *)((u_int8_t *)ptr + ms->len);
if (info->magic != KORE_MEM_MAGIC)
fatal("%s: bad meminfo magic (0x%zx)", __func__, info->magic);
fatal("%s: bad meminfo magic (0x%x)", __func__, info->magic);
return (info);
}