fixed difference in signedness warning

svn path=/trunk/; revision=19660
This commit is contained in:
Thomas Bluemel 2005-11-26 21:15:35 +00:00
parent ea7792e99e
commit 627e9bcca8

View file

@ -142,7 +142,7 @@ InfHostGetIntField(PINFCONTEXT Context,
{ {
INFSTATUS Status; INFSTATUS Status;
Status = InfpGetIntField(Context, FieldIndex, IntegerValue); Status = InfpGetIntField(Context, FieldIndex, (PLONG)IntegerValue);
if (INF_SUCCESS(Status)) if (INF_SUCCESS(Status))
{ {
return 0; return 0;