diff --git a/reactos/ntoskrnl/ps/query.c b/reactos/ntoskrnl/ps/query.c index 192b75458a5..11ba3d6832e 100644 --- a/reactos/ntoskrnl/ps/query.c +++ b/reactos/ntoskrnl/ps/query.c @@ -339,7 +339,7 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle, { /* Return boost status */ *(PULONG)ProcessInformation = Process->Pcb.DisableBoost ? - FALSE : TRUE; + TRUE : FALSE; /* Set the return length */ Length = sizeof(ULONG);