diff options
author | 2012-04-19 14:21:01 +0000 | |
---|---|---|
committer | 2012-04-19 14:21:01 +0000 | |
commit | 31cf48089468c7c0d237b275a78faa910e8daca2 (patch) | |
tree | 9cde16f9d8bf57afd072c82b0164b153742dca92 | |
parent | tweak previous; (diff) | |
download | wireguard-openbsd-31cf48089468c7c0d237b275a78faa910e8daca2.tar.xz wireguard-openbsd-31cf48089468c7c0d237b275a78faa910e8daca2.zip |
missing ;
-rw-r--r-- | sys/arch/arm/arm/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/arm/pmap.c b/sys/arch/arm/arm/pmap.c index f1137fd32d6..690f89b3391 100644 --- a/sys/arch/arm/arm/pmap.c +++ b/sys/arch/arm/arm/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.36 2012/04/10 15:50:52 guenther Exp $ */ +/* $OpenBSD: pmap.c,v 1.37 2012/04/19 14:21:01 deraadt Exp $ */ /* $NetBSD: pmap.c,v 1.147 2004/01/18 13:03:50 scw Exp $ */ /* @@ -4169,7 +4169,7 @@ pmap_postinit(void) pool_setlowat(&pmap_l2dtable_pool, (PAGE_SIZE / sizeof(struct l2_dtable)) * 2); - needed = (maxprocess - 1) / PMAP_DOMAINS + needed = (maxprocess - 1) / PMAP_DOMAINS; l1 = malloc(sizeof(*l1) * needed, M_VMPMAP, M_WAITOK); |