Add a missing ( in the pmap_enter call for the message buffer.

This commit is contained in:
phil 1997-09-23 13:48:15 +00:00
parent c219cd3ba0
commit ea2fc3a36c
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.68 1997/09/19 13:55:03 leo Exp $ */
/* $NetBSD: machdep.c,v 1.69 1997/09/23 13:48:15 phil Exp $ */
/*-
* Copyright (c) 1996 Matthias Pfaller.
@ -206,7 +206,7 @@ cpu_startup()
*/
/* avail_end was pre-decremented in pmap_bootstrap to compensate */
for (i = 0; i < btoc(MSGBUFSIZE); i++)
pmap_enter(pmap_kernel(), (vm_offset_t)msgbufaddr + i * NBPG),
pmap_enter(pmap_kernel(), (vm_offset_t)(msgbufaddr + i * NBPG),
avail_end + i * NBPG, VM_PROT_ALL, TRUE);
initmsgbuf(msgbufaddr, round_page(MSGBUFSIZE));