summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authortmm <tmm@FreeBSD.org>2001-08-05 03:55:02 +0000
committertmm <tmm@FreeBSD.org>2001-08-05 03:55:02 +0000
commit48dbb1115684ec6e8b4930e657701c9cfa50ee6c (patch)
tree01868b0aa72af0a4e6c47462b57b541bdccb5dfa /sys/vm
parent4463b32eb5d22a3d631ddb18c8e8a2bde26055ab (diff)
downloadFreeBSD-src-48dbb1115684ec6e8b4930e657701c9cfa50ee6c.zip
FreeBSD-src-48dbb1115684ec6e8b4930e657701c9cfa50ee6c.tar.gz
Add a missing semicolon to unbreak the kernel build with INVARIANTS
(which was unfortunately turned off in the confguration I used for the last test build). Spotted by: jake Pointy hat to: tmm
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_zone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_zone.c b/sys/vm/vm_zone.c
index 3db61b1..78c6f71 100644
--- a/sys/vm/vm_zone.c
+++ b/sys/vm/vm_zone.c
@@ -281,7 +281,7 @@ zdestroy(vm_zone_t z)
KASSERT(z->ztotal == z->zfreecnt,
("zdestroy() used with an active zone"));
KASSERT((z->zflags & ZONE_BOOT) == 0,
- ("zdestroy() used with a zbootinit()'ed zone"))
+ ("zdestroy() used with a zbootinit()'ed zone"));
if (z->zflags & ZONE_INTERRUPT) {
kmem_free(kernel_map, z->zkva, z->zpagemax * PAGE_SIZE);
OpenPOWER on IntegriCloud