Author: tfaber Date: Sun Oct 11 17:11:53 2015 New Revision: 69500
URL: http://svn.reactos.org/svn/reactos?rev=69500&view=rev Log: [KMTESTS:PO] - Fix build
Modified: trunk/rostests/kmtests/ntos_po/PoIrp_drv.c
Modified: trunk/rostests/kmtests/ntos_po/PoIrp_drv.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/kmtests/ntos_po/PoIrp_drv.... ============================================================================== --- trunk/rostests/kmtests/ntos_po/PoIrp_drv.c [iso-8859-1] (original) +++ trunk/rostests/kmtests/ntos_po/PoIrp_drv.c [iso-8859-1] Sun Oct 11 17:11:53 2015 @@ -138,7 +138,7 @@ ok_eq_uint(Irp->CurrentLocation, 4); IoStackLocation = IoGetCurrentIrpStackLocation(Irp); ok_eq_pointer(IoStackLocation->Parameters.Others.Argument1, DeviceObject); - ok_eq_pointer(IoStackLocation->Parameters.Others.Argument2, (PVOID)MinorFunction); + ok_eq_pointer(IoStackLocation->Parameters.Others.Argument2, (PVOID)(ULONG_PTR)MinorFunction); ok_eq_pointer(IoStackLocation->Parameters.Others.Argument3, (PVOID)PowerState.SystemState); ok_eq_pointer(IoStackLocation->Parameters.Others.Argument4, Context); }