hid/tests: Remove duplicated for condition (coccinellery)

Aric Stewart aric at codeweavers.com
Wed Feb 15 14:40:06 CST 2017


Signed-off-by: Aric Stewart <aric at codeweavers.com>

On 2/15/17 3:54 AM, Michael Stefaniuc wrote:
> Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
> ---
>  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]);
> 



More information about the wine-patches mailing list