Commit in reactos/ntoskrnl/ps on MAIN
process.c+2-21.154 -> 1.155
use ASSERT instead of assert

reactos/ntoskrnl/ps
process.c 1.154 -> 1.155
diff -u -r1.154 -r1.155
--- process.c	21 Nov 2004 10:59:11 -0000	1.154
+++ process.c	21 Nov 2004 13:18:19 -0000	1.155
@@ -1,4 +1,4 @@
-/* $Id: process.c,v 1.154 2004/11/21 10:59:11 weiden Exp $
+/* $Id: process.c,v 1.155 2004/11/21 13:18:19 weiden Exp $
  *
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS kernel
@@ -2194,7 +2194,7 @@
 VOID
 PsUnlockProcess(PEPROCESS Process)
 {
-  assert(Process->LockOwner == KeGetCurrentThread());
+  ASSERT(Process->LockOwner == KeGetCurrentThread());
   
   if(InterlockedDecrement((LONG*)&Process->LockCount) == 0)
   {
CVSspam 0.2.8