wscutil: Fix subcategory string lookup

The device type category array is indexed by the category ID so if we're
skipping i == 0 in the iteration, we should also skip the 0'th element
in device_type_categories.
This commit is contained in:
Andrew Zaborowski 2020-09-29 18:37:06 +02:00 committed by Denis Kenzior
parent fab764967b
commit 975696c5e0
1 changed files with 1 additions and 1 deletions

View File

@ -3031,7 +3031,7 @@ bool wsc_device_type_to_dbus_str(const struct wsc_primary_device_type *val,
bool wsc_device_type_from_subcategory_str(struct wsc_primary_device_type *out,
const char *subcategory_str)
{
struct device_type_category_info *cat = device_type_categories;
struct device_type_category_info *cat = device_type_categories + 1;
unsigned int i;
for (i = 1; i < L_ARRAY_SIZE(device_type_categories); i++, cat++) {