e820: Update debugging messages to report 64bit values

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2015-09-30 23:00:43 -04:00
parent c167e54533
commit 5ba22ab9f5
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ dump_map(void)
void
e820_add(u64 start, u64 size, u32 type)
{
dprintf(8, "Add to e820 map: %08x %08x %d\n", (u32)start, (u32)size, type);
dprintf(8, "Add to e820 map: %08llx %08llx %d\n", start, size, type);
if (! size)
// Huh? Nothing to do.