Commit fef18a42 authored by Andrew Cook's avatar Andrew Cook Committed by Alexandre Julliard

kernel32: Fix argument order for NtIsProcessInJob.

parent a4ec0593
......@@ -1015,7 +1015,7 @@ BOOL WINAPI AssignProcessToJobObject( HANDLE job, HANDLE process )
*/
BOOL WINAPI IsProcessInJob( HANDLE process, HANDLE job, PBOOL result )
{
NTSTATUS status = NtIsProcessInJob( job, process );
NTSTATUS status = NtIsProcessInJob( process, job );
switch(status)
{
case STATUS_PROCESS_IN_JOB:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment