fixed difference in signedness warning
authorThomas Bluemel <thomas@reactsoft.com>
Sat, 26 Nov 2005 21:15:35 +0000 (21:15 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Sat, 26 Nov 2005 21:15:35 +0000 (21:15 +0000)
svn path=/trunk/; revision=19660

reactos/lib/inflib/infhostget.c

index 68dd660..775773d 100644 (file)
@@ -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;