diff options
author | briggs <briggs@cvs.openbsd.org> | 1996-01-14 21:15:22 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1996-01-14 21:15:22 +0000 |
commit | d5134ee5cf79283ff740459223dd529b7507150c (patch) | |
tree | b991231a75a364d1c5e880814ccf02f58a4e8d2c /sys | |
parent | ae874c3452aa2a6501b4b5418f4eace62b75c578 (diff) |
from netbsd: more of PR 1931. Fix code that's not compiled unless DEBUG.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/mac68k/vm_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/mac68k/vm_machdep.c b/sys/arch/mac68k/mac68k/vm_machdep.c index 38e447d9ecd..7deb18a559f 100644 --- a/sys/arch/mac68k/mac68k/vm_machdep.c +++ b/sys/arch/mac68k/mac68k/vm_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: vm_machdep.c,v 1.14 1995/12/09 04:37:48 mycroft Exp $ */ +/* $NetBSD: vm_machdep.c,v 1.15 1996/01/12 04:16:59 briggs Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -239,7 +239,7 @@ pagemove(from, to, size) register vm_offset_t pa; #ifdef DEBUG - if (size & CLOFFSET) + if (size % PAGE_SIZE) panic("pagemove"); #endif while (size > 0) { |