diff options
author | julian <julian@FreeBSD.org> | 2004-05-29 00:51:19 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2004-05-29 00:51:19 +0000 |
commit | c85e63d425834e8115ce20fabc98cfe9af17974c (patch) | |
tree | 90dfb9283e4889f34526e006d0e40a59d5312611 /sys/netgraph/ng_gif_demux.c | |
parent | 2873042997b2bd3b9ebb64d3ea805924eaf82ede (diff) | |
download | FreeBSD-src-c85e63d425834e8115ce20fabc98cfe9af17974c.zip FreeBSD-src-c85e63d425834e8115ce20fabc98cfe9af17974c.tar.gz |
Switch to using C99 sparse initialisers for the type methods array.
Should make no binary difference.
Submitted by: Gleb Smirnoff <glebius@cell.sick.ru>
Reviewed by: Harti Brandt <harti@freebsd.org>
MFC after: 1 week
Diffstat (limited to 'sys/netgraph/ng_gif_demux.c')
-rw-r--r-- | sys/netgraph/ng_gif_demux.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/netgraph/ng_gif_demux.c b/sys/netgraph/ng_gif_demux.c index 4f5fe46..3c4d309 100644 --- a/sys/netgraph/ng_gif_demux.c +++ b/sys/netgraph/ng_gif_demux.c @@ -144,18 +144,15 @@ static const struct ng_cmdlist ng_gif_demux_cmdlist[] = { /* Node type descriptor */ static struct ng_type ng_gif_demux_typestruct = { - NG_ABI_VERSION, - NG_GIF_DEMUX_NODE_TYPE, - NULL, - ng_gif_demux_constructor, - ng_gif_demux_rcvmsg, - ng_gif_demux_shutdown, - ng_gif_demux_newhook, - NULL, - NULL, - ng_gif_demux_rcvdata, - ng_gif_demux_disconnect, - ng_gif_demux_cmdlist, + .version = NG_ABI_VERSION, + .name = NG_GIF_DEMUX_NODE_TYPE, + .constructor = ng_gif_demux_constructor, + .rcvmsg = ng_gif_demux_rcvmsg, + .shutdown = ng_gif_demux_shutdown, + .newhook = ng_gif_demux_newhook, + .rcvdata = ng_gif_demux_rcvdata, + .disconnect = ng_gif_demux_disconnect, + .cmdlist = ng_gif_demux_cmdlist, }; NETGRAPH_INIT(gif_demux, &ng_gif_demux_typestruct); |