Author: fireball Date: Fri May 31 12:24:23 2013 New Revision: 59122
URL: http://svn.reactos.org/svn/reactos?rev=59122&view=rev Log: [PCIX] - Fix parameters in KeSetEvent call. Spotted by Daniel Nespoulos.
Modified: trunk/reactos/drivers/bus/pcix/dispatch.c
Modified: trunk/reactos/drivers/bus/pcix/dispatch.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/bus/pcix/dispatch.c... ============================================================================== --- trunk/reactos/drivers/bus/pcix/dispatch.c [iso-8859-1] (original) +++ trunk/reactos/drivers/bus/pcix/dispatch.c [iso-8859-1] Fri May 31 12:24:23 2013 @@ -31,7 +31,7 @@ UNREFERENCED_PARAMETER(Irp);
/* Set the event and return the appropriate status code */ - KeSetEvent(Event, FALSE, IO_NO_INCREMENT); + KeSetEvent(Event, IO_NO_INCREMENT, FALSE); return STATUS_MORE_PROCESSING_REQUIRED; }