diff options
author | alfred <alfred@FreeBSD.org> | 2002-06-01 07:18:32 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-06-01 07:18:32 +0000 |
commit | b5fffbc6158c3faffa8b4acf671c1676a7cda50b (patch) | |
tree | 3adce91885eaf4717286bb82ca2cd98bf7360539 /sys/dev/usb/udbp.c | |
parent | 0ef59d0f18e5853e3e5fa8f8efd2c8f6e5a3bc62 (diff) | |
download | FreeBSD-src-b5fffbc6158c3faffa8b4acf671c1676a7cda50b.zip FreeBSD-src-b5fffbc6158c3faffa8b4acf671c1676a7cda50b.tar.gz |
Should have been part of recent commit:
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.
But now I'm unbreaking compilation by adjusting these files to the recent
netgraph change.
Diffstat (limited to 'sys/dev/usb/udbp.c')
-rw-r--r-- | sys/dev/usb/udbp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/udbp.c b/sys/dev/usb/udbp.c index 1c903894..3669680 100644 --- a/sys/dev/usb/udbp.c +++ b/sys/dev/usb/udbp.c @@ -161,11 +161,11 @@ Static ng_rcvdata_t ng_udbp_rcvdata; Static ng_disconnect_t ng_udbp_disconnect; /* Parse type for struct ngudbpstat */ -Static const struct ng_parse_struct_info - ng_udbp_stat_type_info = NG_UDBP_STATS_TYPE_INFO; +Static const struct ng_parse_struct_field + ng_udbp_stat_type_fields[] = NG_UDBP_STATS_TYPE_INFO; Static const struct ng_parse_type ng_udbp_stat_type = { &ng_parse_struct_type, - &ng_udbp_stat_type_info + &ng_udbp_stat_type_fields }; /* List of commands and how to convert arguments to/from ASCII */ |