From f8aae7776f85d2fa8aa93f73c37782cd9e1204c6 Mon Sep 17 00:00:00 2001 From: Julian Elischer Date: Sat, 29 May 2004 00:51:19 +0000 Subject: Switch to using C99 sparse initialisers for the type methods array. Should make no binary difference. Submitted by: Gleb Smirnoff Reviewed by: Harti Brandt MFC after: 1 week --- sys/netgraph/ng_sample.c | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'sys/netgraph/ng_sample.c') diff --git a/sys/netgraph/ng_sample.c b/sys/netgraph/ng_sample.c index 71b75af16f20..20a30560d0e5 100644 --- a/sys/netgraph/ng_sample.c +++ b/sys/netgraph/ng_sample.c @@ -104,18 +104,17 @@ static const struct ng_cmdlist ng_xxx_cmdlist[] = { /* Netgraph node type descriptor */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_XXX_NODE_TYPE, - NULL, - ng_xxx_constructor, - ng_xxx_rcvmsg, - ng_xxx_shutdown, - ng_xxx_newhook, - NULL, - ng_xxx_connect, - ng_xxx_rcvdata, - ng_xxx_disconnect, - ng_xxx_cmdlist + .version = NG_ABI_VERSION, + .name = NG_XXX_NODE_TYPE, + .constructor = ng_xxx_constructor, + .rcvmsg = ng_xxx_rcvmsg, + .shutdown = ng_xxx_shutdown, + .newhook = ng_xxx_newhook, +/* .findhook = ng_xxx_findhook, */ + .connect = ng_xxx_connect, + .rcvdata = ng_xxx_rcvdata, + .disconnect = ng_xxx_disconnect, + .cmdlist = ng_xxx_cmdlist, }; NETGRAPH_INIT(xxx, &typestruct); -- cgit v1.3