]> xenbits.xensource.com Git - seabios.git/commitdiff
e820: Update debugging messages to report 64bit values
authorKevin O'Connor <kevin@koconnor.net>
Thu, 1 Oct 2015 03:00:43 +0000 (23:00 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Thu, 15 Oct 2015 14:52:13 +0000 (10:52 -0400)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/e820map.c

index 901ccdfda7639e0543556c89ae04a238ec368abf..39445cf6399dfe1e86230cb093c13ccb1e3ae1cc 100644 (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.