From 4b74e9dfa7dcb9067e867300f6bfd52a57206830 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sat, 3 Oct 2015 09:52:55 +0200 Subject: [PATCH] hidclass.sys: Fixed copy/paste error (Coverity). Signed-off-by: Marcus Meissner Signed-off-by: Aric Stewart --- dlls/hidclass.sys/descriptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hidclass.sys/descriptor.c b/dlls/hidclass.sys/descriptor.c index 6f8e45ef5d3..35057f1c4d5 100644 --- a/dlls/hidclass.sys/descriptor.c +++ b/dlls/hidclass.sys/descriptor.c @@ -414,7 +414,7 @@ void parse_io_feature(unsigned int bSize, int itemVal, int bTag, unsigned int *f if ((itemVal & INPUT_ARRAY) == 0) feature->isArray= TRUE; else - feature->isArray= TRUE; /* Var */ + feature->isArray= FALSE; /* Var */ if ((itemVal & INPUT_ABS) == 0) feature->IsAbsolute = TRUE; else -- 2.11.4.GIT