fix another warning.
This commit is contained in:
parent
5eacd822a1
commit
0eeab9735f
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pmap.c,v 1.52 2000/04/22 16:42:25 mrg Exp $ */
|
/* $NetBSD: pmap.c,v 1.53 2000/05/17 09:12:10 mrg Exp $ */
|
||||||
#undef NO_VCACHE /* Don't forget the locked TLB in dostart */
|
#undef NO_VCACHE /* Don't forget the locked TLB in dostart */
|
||||||
#define HWREF 1
|
#define HWREF 1
|
||||||
#undef BOOT_DEBUG
|
#undef BOOT_DEBUG
|
||||||
|
@ -410,7 +410,7 @@ pmap_bootstrap(kernelstart, kernelend, maxctx)
|
||||||
/* print out mem list */
|
/* print out mem list */
|
||||||
prom_printf("Available virutal memory:\r\n");
|
prom_printf("Available virutal memory:\r\n");
|
||||||
for (mp = memlist; mp->size; mp++) {
|
for (mp = memlist; mp->size; mp++) {
|
||||||
prom_printf("memlist start %p size %lx\r\n", (void *)mp->start,
|
prom_printf("memlist start %p size %lx\r\n", (void *)(u_long)mp->start,
|
||||||
(u_long)mp->size);
|
(u_long)mp->size);
|
||||||
}
|
}
|
||||||
prom_printf("End of available virutal memory\r\n");
|
prom_printf("End of available virutal memory\r\n");
|
||||||
|
|
Loading…
Reference in New Issue