Commit b89e3f80 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

hid/tests: Remove duplicated for condition (coccinellery).

parent f20fa69c
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment