From 48dbb1115684ec6e8b4930e657701c9cfa50ee6c Mon Sep 17 00:00:00 2001 From: tmm Date: Sun, 5 Aug 2001 03:55:02 +0000 Subject: 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 --- sys/vm/vm_zone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/vm') 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); -- cgit v1.1