diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-29 22:50:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-29 22:50:04 +0000 |
commit | 1b73888fd897f2d492f0e54142e200904ef0c668 (patch) | |
tree | 4932f79fd1f6202a9c9628f6826a58d585665720 | |
parent | 2eefaec06db98381b15fdf0c9833175d8f910b9b (diff) |
fix pasto so this compiles
-rw-r--r-- | sys/arch/hp300/hp300/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index 212001c3fbf..f4fb5f22229 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.71 2001/11/28 16:13:28 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.72 2001/11/29 22:50:03 millert Exp $ */ /* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */ /* @@ -318,7 +318,7 @@ cpu_startup() panic("cpu_startup: not enough memory for " "buffer cache"); - pmap_kenter_pa(va, VM_PAGE_TO_PHYS(pg), + pmap_kenter_pa(curbuf, VM_PAGE_TO_PHYS(pg), VM_PROT_READ|VM_PROT_WRITE); curbuf += PAGE_SIZE; curbufsize -= PAGE_SIZE; |