mirror of
https://github.com/reactos/wine.git
synced 2025-03-01 17:26:09 +00:00
hid/tests: Remove duplicated for condition (coccinellery).
Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f20fa69c9b
commit
b89e3f80ae
@ -358,7 +358,7 @@ static void test_get_input_report(void)
|
||||
{
|
||||
ok(data[0] == 0, "Report ID (0) is not the first byte of the data\n");
|
||||
report[0] = 0;
|
||||
for (i = 0; i < Caps.InputReportByteLength && i < Caps.InputReportByteLength; i++)
|
||||
for (i = 0; i < Caps.InputReportByteLength; i++)
|
||||
{
|
||||
char bytestr[5];
|
||||
sprintf(bytestr, "%x ", (BYTE)data[i]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user