From 067ab38bb74449ac96b3d771d711bd2ad09c7161 Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Wed, 10 Jun 2009 18:09:15 +0000 Subject: [PATCH] - Fix typo svn path=/trunk/; revision=41369 --- reactos/ntoskrnl/ke/procobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/procobj.c b/reactos/ntoskrnl/ke/procobj.c index 3ba5769871c..a37a41492ca 100644 --- a/reactos/ntoskrnl/ke/procobj.c +++ b/reactos/ntoskrnl/ke/procobj.c @@ -278,7 +278,7 @@ KeSetPriorityAndQuantumProcess(IN PKPROCESS Process, if (Process->BasePriority == Priority) return Process->BasePriority; /* If the caller gave priority 0, normalize to 1 */ - if (!LOW_PRIORITY) Priority = LOW_PRIORITY + 1; + if (!Priority) Priority = LOW_PRIORITY + 1; /* Lock the process */ KiAcquireProcessLock(Process, &ProcessLock);