diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2004-11-30 07:41:53 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2004-11-30 07:41:53 +0000 |
commit | 8736da922c77a48f5518aa9f8e427bcb5adf4df1 (patch) | |
tree | 363cc62c96c643d5247f90c97eb19fb450bc0b5a | |
parent | 9fb0a99025af567ab4c0b08fae9d1dea2ba98a44 (diff) |
repair DEBUG kernels
ok miod@
-rw-r--r-- | sys/arch/m68k/m68k/pmap_motorola.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/m68k/pmap_motorola.c b/sys/arch/m68k/m68k/pmap_motorola.c index 94e2c6dc827..9a266411cce 100644 --- a/sys/arch/m68k/m68k/pmap_motorola.c +++ b/sys/arch/m68k/m68k/pmap_motorola.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_motorola.c,v 1.34 2004/05/20 09:20:42 kettenis Exp $ */ +/* $OpenBSD: pmap_motorola.c,v 1.35 2004/11/30 07:41:52 martin Exp $ */ /* * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -2748,7 +2748,7 @@ pmap_check_wiring(str, va) pa = pmap_pte_pa(pmap_pte(pmap_kernel(), va)); pg = PHYS_TO_VM_PAGE(pa); - if (pg->wire_count >= PAGE_SIZE / sizeof(struct pt_entry_t)) { + if (pg->wire_count >= PAGE_SIZE / sizeof(pt_entry_t)) { printf("*%s*: 0x%lx: wire count %d\n", str, va, pg->wire_count); return; } |