summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-05-11 07:29:00 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-05-11 07:29:00 +0000
commit9e7cfdd04d85e2b7c877c0bd790b33a6f7d3d117 (patch)
tree5edc480bd67169072e0035e4521ab997e5415a6d
parent71dc779315000649a42c225acb6e416207ad5c5a (diff)
Don't ask C for more syntactic sugar than it can provide.
-rw-r--r--sys/arch/pmax/pmax/pmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/pmax/pmap.c b/sys/arch/pmax/pmax/pmap.c
index 24894aaa72f..786f65faf54 100644
--- a/sys/arch/pmax/pmax/pmap.c
+++ b/sys/arch/pmax/pmax/pmap.c
@@ -1092,7 +1092,7 @@ pmap_unwire(pmap, va)
pmap->pm_stats.wired_count -= i;
do {
if (pte->pt_entry & PG_V)
- pte->pt_entry ~= PG_WIRED;
+ pte->pt_entry &= ~PG_WIRED;
pte++;
} while (--i != 0);
}