From 627e9bcca8c277a87ad88e58e56e8d58f3dfb839 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Sat, 26 Nov 2005 21:15:35 +0000 Subject: [PATCH] fixed difference in signedness warning svn path=/trunk/; revision=19660 --- reactos/lib/inflib/infhostget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/inflib/infhostget.c b/reactos/lib/inflib/infhostget.c index 68dd6601291..775773d548b 100644 --- a/reactos/lib/inflib/infhostget.c +++ b/reactos/lib/inflib/infhostget.c @@ -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;