mirror of
https://github.com/reactos/reactos.git
synced 2025-06-07 02:10:36 +00:00
fixed typo in PsLockProcess()
svn path=/trunk/; revision=13139
This commit is contained in:
parent
f2e99da071
commit
030b284e30
1 changed files with 1 additions and 1 deletions
|
@ -2426,7 +2426,7 @@ PsLockProcess(PEPROCESS Process, BOOL Timeout)
|
||||||
KernelMode,
|
KernelMode,
|
||||||
FALSE,
|
FALSE,
|
||||||
Delay);
|
Delay);
|
||||||
if(NT_SUCCESS(Status))
|
if(!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
if(Status == STATUS_TIMEOUT)
|
if(Status == STATUS_TIMEOUT)
|
||||||
|
|
Loading…
Reference in a new issue