aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-08-23 20:31:21 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-08-23 20:31:21 +0000
commitfc377cca01b466faf2294e7c532307946bcdc4c1 (patch)
tree34ef817af6d5582fc366dae965fb027310199243
parentdba31bdea1599efe36df98fd28881b53174ad422 (diff)
Notes
-rw-r--r--sys/sys/malloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h
index ef0aa17dfa6dd..f1bdedb706423 100644
--- a/sys/sys/malloc.h
+++ b/sys/sys/malloc.h
@@ -145,7 +145,7 @@ struct malloc_type_header {
SYSINIT(type##_init, SI_SUB_KMEM, SI_ORDER_SECOND, malloc_init, \
type); \
SYSUNINIT(type##_uninit, SI_SUB_KMEM, SI_ORDER_ANY, \
- malloc_uninit, type);
+ malloc_uninit, type)
#define MALLOC_DECLARE(type) \
extern struct malloc_type type[1]