summaryrefslogtreecommitdiff
path: root/sys/kern/subr_clist.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/subr_clist.c')
-rw-r--r--sys/kern/subr_clist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c
index cc4b32aa3cf2..f59caf9bce12 100644
--- a/sys/kern/subr_clist.c
+++ b/sys/kern/subr_clist.c
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
static void clist_init(void *);
SYSINIT(clist, SI_SUB_CLIST, SI_ORDER_FIRST, clist_init, NULL)
-static struct cblock *cfreelist = 0;
+static struct cblock *cfreelist = 0; /* XXX: use <sys/queue.h> */
int cfreecount = 0;
static int cslushcount;
static int ctotcount;