From b42715c204d83ac8f2ce70664d262ad9d577a3df Mon Sep 17 00:00:00 2001 From: chs Date: Sun, 19 Sep 1999 19:05:44 +0000 Subject: [PATCH] fix something that was missed in the PMAP_NEW cleanup. --- sys/arch/sun3/sun3x/pmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/sun3/sun3x/pmap.c b/sys/arch/sun3/sun3x/pmap.c index cc1bcfa51368..a69e26f75238 100644 --- a/sys/arch/sun3/sun3x/pmap.c +++ b/sys/arch/sun3/sun3x/pmap.c @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.49 1999/09/12 01:17:27 chs Exp $ */ +/* $NetBSD: pmap.c,v 1.50 1999/09/19 19:05:44 chs Exp $ */ /*- * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc. @@ -2920,7 +2920,7 @@ pmap_clear_reference(pg) boolean_t rv; if (!is_managed(pa)) - return; + return FALSE; rv = pmap_is_referenced(pg); pmap_clear_pv(pa, PV_FLAGS_USED); return rv;