aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2001-06-10 10:54:29 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2001-06-10 10:54:29 +0000
commit09f8f5b2599d58254b9b23665e900959f35ed9a3 (patch)
treee01384a82d56a338e972f0f09d3cdac68adec91d
parent1e4ebf4e8d75e980e906f17e63b283930655b357 (diff)
Notes
-rw-r--r--sys/sys/sysctl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 2de78a25c16ce..d43c89f80e016 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -171,7 +171,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_entry);
#define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) \
static struct sysctl_oid sysctl__##parent##_##name = { \
&sysctl_##parent##_children, { 0 }, \
- nbr, kind, a1, a2, #name, handler, fmt }; \
+ nbr, kind, a1, a2, #name, handler, fmt, 0 }; \
DATA_SET(sysctl_set, sysctl__##parent##_##name);
#define SYSCTL_ADD_OID(ctx, parent, nbr, name, kind, a1, a2, handler, fmt, descr) \