hidclass.sys: Fix incorrect feature report debug print.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-06-08 09:26:35 +02:00 committed by Alexandre Julliard
parent 1c5b19e123
commit dc501024ca
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ static void debug_print_preparsed(WINE_HIDP_PREPARSED_DATA *data)
debug_print_report("OUTPUT", data, &data->reports[i]);
}
end += data->reportCount[HidP_Feature];
for (i = 0; i < end; i++)
for (; i < end; i++)
{
debug_print_report("FEATURE", data, &data->reports[i]);
}