mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[PCIX]
- Fix parameters in KeSetEvent call. Spotted by Daniel Nespoulos. svn path=/trunk/; revision=59122
This commit is contained in:
parent
2f4761af8f
commit
82c90910e5
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ PciSetEventCompletion(IN PDEVICE_OBJECT DeviceObject,
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue