diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-04-19 14:21:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-04-19 14:21:02 +0000 |
commit | b950847b521eef5bae32954456415558f7df8d2d (patch) | |
tree | 3dcf028f5a057e619fd60a4b1c71921d4ea31e2d /sys/arch/arm | |
parent | c77e4270f258b96dac1ee8399f3a114c93ad0749 (diff) |
missing ;
Diffstat (limited to 'sys/arch/arm')
-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); |