diff options
author | emax <emax@FreeBSD.org> | 2004-01-28 00:05:22 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2004-01-28 00:05:22 +0000 |
commit | e8f29709eb69be9ecd02a1c9feae6c6331fb5a76 (patch) | |
tree | 0c52c65ba08f7f6d71c93230dcaf405be98f869b /lib/libusbhid | |
parent | 8baf7f2fe32d5d403867129729791c39516fdc7f (diff) | |
download | FreeBSD-src-e8f29709eb69be9ecd02a1c9feae6c6331fb5a76.zip FreeBSD-src-e8f29709eb69be9ecd02a1c9feae6c6331fb5a76.tar.gz |
The report size is not a local item, so don't clear it when clearing local items.
PR: misc/58971
Reviewed by: imp (mentor), mdodd
Obtained from: NetBSD
Diffstat (limited to 'lib/libusbhid')
-rw-r--r-- | lib/libusbhid/parse.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libusbhid/parse.c b/lib/libusbhid/parse.c index 6680d84..65e13c1 100644 --- a/lib/libusbhid/parse.c +++ b/lib/libusbhid/parse.c @@ -86,7 +86,6 @@ hid_clear_local(hid_item_t *c) c->string_minimum = 0; c->string_maximum = 0; c->set_delimiter = 0; - c->report_size = 0; } hid_data_t |