Module: wine Branch: master Commit: b89e3f80ae7a640ccd2d70aef67369273ec6abf6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b89e3f80ae7a640ccd2d70aef6...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Feb 15 10:54:12 2017 +0100
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
---
dlls/hid/tests/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/hid/tests/device.c b/dlls/hid/tests/device.c index e72a500..a4c12ce 100644 --- a/dlls/hid/tests/device.c +++ b/dlls/hid/tests/device.c @@ -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]);