mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:26:20 +00:00
fixed difference in signedness warning
svn path=/trunk/; revision=19660
This commit is contained in:
parent
ea7792e99e
commit
627e9bcca8
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ InfHostGetIntField(PINFCONTEXT Context,
|
|||
{
|
||||
INFSTATUS Status;
|
||||
|
||||
Status = InfpGetIntField(Context, FieldIndex, IntegerValue);
|
||||
Status = InfpGetIntField(Context, FieldIndex, (PLONG)IntegerValue);
|
||||
if (INF_SUCCESS(Status))
|
||||
{
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue