diff options
author | 2009-07-24 11:41:15 +0000 | |
---|---|---|
committer | 2009-07-24 11:41:15 +0000 | |
commit | 939a6d42d86cfca2666dfb5324b6701308f69406 (patch) | |
tree | 653126bf3d48ee0e93b38a2764c06ebe99a63cff /lib/libusbhid/parse.c | |
parent | Global Item #3 should be Physical Minimum not Maximum according (diff) | |
download | wireguard-openbsd-939a6d42d86cfca2666dfb5324b6701308f69406.tar.xz wireguard-openbsd-939a6d42d86cfca2666dfb5324b6701308f69406.zip |
From NetBSD rev 1.5
The report size is not a local item, so don't clear it when clearing local items.
Diffstat (limited to 'lib/libusbhid/parse.c')
-rw-r--r-- | lib/libusbhid/parse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libusbhid/parse.c b/lib/libusbhid/parse.c index 53b59af3bb5..25798cbbe71 100644 --- a/lib/libusbhid/parse.c +++ b/lib/libusbhid/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.4 2009/07/24 08:37:47 jsg Exp $ */ +/* $OpenBSD: parse.c,v 1.5 2009/07/24 11:41:15 jsg Exp $ */ /* $NetBSD: parse.c,v 1.2 2001/12/29 20:44:22 augustss Exp $ */ /* @@ -84,7 +84,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 |