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…
Reference in New Issue