diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-09-30 23:00:43 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-10-15 10:52:13 -0400 |
commit | 5ba22ab9f56fd1c01fc6cdd3f934e7323894e0f8 (patch) | |
tree | 78341f7d7ed8877a3be44efe0806b7fced599a89 /src/e820map.c | |
parent | c167e54533124f3eaf3f2caa09e3022196573bec (diff) | |
download | seabios-5ba22ab9f56fd1c01fc6cdd3f934e7323894e0f8.tar.gz |
e820: Update debugging messages to report 64bit values
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/e820map.c')
-rw-r--r-- | src/e820map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/e820map.c b/src/e820map.c index 901ccdfd..39445cf6 100644 --- a/src/e820map.c +++ b/src/e820map.c @@ -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. |