1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Fix format of physical addresses; this fixes the n32 build.

This commit is contained in:
Juli Mallett 2011-01-19 21:45:40 +00:00
parent a8ac9871df
commit 166bee2858
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217607

View File

@ -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];