diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2011-01-19 21:45:40 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2011-01-19 21:45:40 +0000 |
| commit | 166bee28585033dad795f4db57cb7304553061b5 (patch) | |
| tree | c6aaeecc8e7ae2bdb80fbd93ca9c849a12329ec0 | |
| parent | a8ac9871df1043e46c2f30cf900b71c6ec527f7b (diff) | |
Notes
| -rw-r--r-- | sys/mips/rmi/xlr_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/mips/rmi/xlr_machdep.c b/sys/mips/rmi/xlr_machdep.c index dd1049a6ad919..71dae0fbfa2ce 100644 --- a/sys/mips/rmi/xlr_machdep.c +++ b/sys/mips/rmi/xlr_machdep.c @@ -358,9 +358,9 @@ xlr_mem_init(void) } phys_avail[1] = boot_map->physmem_map[0].addr + boot_map->physmem_map[0].size; - printf("First segment: addr:%p -> %p \n", - (void *)phys_avail[0], - (void *)phys_avail[1]); + printf("First segment: addr:%#jx -> %#jx \n", + (uintmax_t)phys_avail[0], + (uintmax_t)phys_avail[1]); dump_avail[0] = phys_avail[0]; dump_avail[1] = phys_avail[1]; |
