From c85e63d425834e8115ce20fabc98cfe9af17974c Mon Sep 17 00:00:00 2001 From: julian 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_echo.c | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'sys/netgraph/ng_echo.c') diff --git a/sys/netgraph/ng_echo.c b/sys/netgraph/ng_echo.c index 68a165d..6e956be 100644 --- a/sys/netgraph/ng_echo.c +++ b/sys/netgraph/ng_echo.c @@ -63,18 +63,12 @@ static ng_disconnect_t nge_disconnect; /* Netgraph type */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_ECHO_NODE_TYPE, - NULL, - nge_cons, - nge_rcvmsg, - NULL, - NULL, - NULL, - NULL, - nge_rcvdata, - nge_disconnect, - NULL + .version = NG_ABI_VERSION, + .name = NG_ECHO_NODE_TYPE, + .constructor = nge_cons, + .rcvmsg = nge_rcvmsg, + .rcvdata = nge_rcvdata, + .disconnect = nge_disconnect, }; NETGRAPH_INIT(echo, &typestruct); -- cgit v1.1