summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_eiface.h
diff options
context:
space:
mode:
authorarchie <archie@FreeBSD.org>2002-05-31 23:48:03 +0000
committerarchie <archie@FreeBSD.org>2002-05-31 23:48:03 +0000
commitb10887dc2b5e16221d7f03cd5ac6ef4fb431be07 (patch)
treea3614f18ebb460f641055c46c1ae4703125a0458 /sys/netgraph/ng_eiface.h
parent5f569c908a7d63a3364c4e60c565498bceb4ff53 (diff)
downloadFreeBSD-src-b10887dc2b5e16221d7f03cd5ac6ef4fb431be07.zip
FreeBSD-src-b10887dc2b5e16221d7f03cd5ac6ef4fb431be07.tar.gz
Fix GCC warnings caused by initializing a zero length array. In the process,
simply things a bit by getting rid of 'struct ng_parse_struct_info' which was useless because it only contained one field. MFC after: 2 weeks
Diffstat (limited to 'sys/netgraph/ng_eiface.h')
-rw-r--r--sys/netgraph/ng_eiface.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/sys/netgraph/ng_eiface.h b/sys/netgraph/ng_eiface.h
index ed639be..e2119a0 100644
--- a/sys/netgraph/ng_eiface.h
+++ b/sys/netgraph/ng_eiface.h
@@ -68,17 +68,15 @@ struct ng_eiface_par {
u_char oct5;
};
-static const struct ng_parse_struct_info ng_eiface_par_fields = {
- {
- { "oct0", &ng_parse_int8_type },
- { "oct1", &ng_parse_int8_type },
- { "oct2", &ng_parse_int8_type },
- { "oct3", &ng_parse_int8_type },
- { "oct4", &ng_parse_int8_type },
- { "oct5", &ng_parse_int8_type },
- { NULL },
- }
-};
-
+/* Keep this in sync with the above structure definition */
+#define NG_EIFACE_PAR_FIELDS { \
+ { "oct0", &ng_parse_int8_type }, \
+ { "oct1", &ng_parse_int8_type }, \
+ { "oct2", &ng_parse_int8_type }, \
+ { "oct3", &ng_parse_int8_type }, \
+ { "oct4", &ng_parse_int8_type }, \
+ { "oct5", &ng_parse_int8_type }, \
+ { NULL } \
+}
#endif /* _NETGRAPH_EIFACE_H_ */
OpenPOWER on IntegriCloud