mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fix signedness (SetupGetIntField takes a PINT argument, not a PUINT one)
svn path=/trunk/; revision=18090
This commit is contained in:
parent
e8a80ca380
commit
94edbf0294
1 changed files with 1 additions and 1 deletions
|
@ -4385,7 +4385,7 @@ SetupDiInstallDevice(
|
||||||
DWORD SectionNameLength = 0;
|
DWORD SectionNameLength = 0;
|
||||||
BOOL Result = FALSE;
|
BOOL Result = FALSE;
|
||||||
INFCONTEXT ContextService;
|
INFCONTEXT ContextService;
|
||||||
UINT Flags;
|
INT Flags;
|
||||||
DWORD RequiredSize;
|
DWORD RequiredSize;
|
||||||
HINF hInf = NULL;
|
HINF hInf = NULL;
|
||||||
LPCWSTR AssociatedService = NULL;
|
LPCWSTR AssociatedService = NULL;
|
||||||
|
|
Loading…
Reference in a new issue