diff options
author | alc <alc@FreeBSD.org> | 2002-09-21 19:42:11 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2002-09-21 19:42:11 +0000 |
commit | dd82785dd0c0ed38381647f5c2ee8c77cef9c9d3 (patch) | |
tree | bb0133c5236df2516813f6094ba244de4dafb4c0 | |
parent | eaf29d3807d1ae4283dff97f742c0d32c2303223 (diff) | |
download | FreeBSD-src-dd82785dd0c0ed38381647f5c2ee8c77cef9c9d3.zip FreeBSD-src-dd82785dd0c0ed38381647f5c2ee8c77cef9c9d3.tar.gz |
o Remove an initialized but unused variable from pmap_remove_all().
-rw-r--r-- | sys/alpha/alpha/pmap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/alpha/alpha/pmap.c b/sys/alpha/alpha/pmap.c index 8761537..a2fd14d 100644 --- a/sys/alpha/alpha/pmap.c +++ b/sys/alpha/alpha/pmap.c @@ -1850,10 +1850,8 @@ pmap_remove_all(vm_page_t m) { register pv_entry_t pv; pt_entry_t *pte, tpte; - int nmodify; int s; - nmodify = 0; #if defined(PMAP_DIAGNOSTIC) /* * XXX this makes pmap_page_protect(NONE) illegal for non-managed |