aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2008-08-20 02:48:33 +0000
committerJulian Elischer <julian@FreeBSD.org>2008-08-20 02:48:33 +0000
commit6eba633d807daf70bb66fba73b7a713ec324a0b8 (patch)
treebcf9ca5263bf5605b3d061c687ad085e47395bc8
parent04e1532fc54002411768087a126c878f556c2c3c (diff)
downloadsrc-6eba633d807daf70bb66fba73b7a713ec324a0b8.tar.gz
src-6eba633d807daf70bb66fba73b7a713ec324a0b8.zip
Fix wierd integration error
No idea where this came from
Notes
Notes: svn path=/head/; revision=181890
-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 6c396bb82b4f..25978620c835 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -216,7 +216,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, 0, __DESCR(descr), 0, 0 }; \
+ a1, a2, #name, handler, fmt, 0, __DESCR(descr) }; \
DATA_SET(sysctl_set, sysctl__##parent##_##name)
#define SYSCTL_ADD_OID(ctx, parent, nbr, name, kind, a1, a2, handler, fmt, descr) \