From 0e4c108490db8d1c7b3c5d016979ace327d2c8ab Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Fri, 4 Mar 2022 09:26:06 +0100 Subject: [PATCH] setupapi/tests: Use correct integral type. Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- dlls/setupapi/tests/parser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/setupapi/tests/parser.c b/dlls/setupapi/tests/parser.c index c18063fbe38..17251fc923b 100644 --- a/dlls/setupapi/tests/parser.c +++ b/dlls/setupapi/tests/parser.c @@ -268,9 +268,8 @@ static void test_enum_sections(void) static const char *contents = STD_HEADER "[s1]\nfoo=bar\n[s2]\nbar=foo\n[s3]\n[strings]\na=b\n"; BOOL ret; - DWORD len; HINF hinf; - UINT err, index; + UINT err, index, len; char buffer[256]; if (!pSetupEnumInfSectionsA)