Author: arty Date: Sun Aug 19 09:11:54 2007 New Revision: 28416
URL: http://svn.reactos.org/svn/reactos?rev=28416&view=rev Log: (customize-variable 'indent-tabs-mode) ; nil
Modified: trunk/reactos/ntoskrnl/ob/obhandle.c
Modified: trunk/reactos/ntoskrnl/ob/obhandle.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ob/obhandle.c?rev=... ============================================================================== --- trunk/reactos/ntoskrnl/ob/obhandle.c (original) +++ trunk/reactos/ntoskrnl/ob/obhandle.c Sun Aug 19 09:11:54 2007 @@ -331,8 +331,8 @@ /* Insert a new entry */ FreeEntry = ObpInsertHandleCount(ObjectHeader); if (!FreeEntry) return STATUS_INSUFFICIENT_RESOURCES; - ASSERT(!FreeEntry->Process); - ASSERT(!FreeEntry->HandleCount); + ASSERT(!FreeEntry->Process); + ASSERT(!FreeEntry->HandleCount);
/* Fill it out */ FreeEntry->Process = Process; @@ -377,8 +377,8 @@ /* Allocate one */ FreeEntry = ObpInsertHandleCount(ObjectHeader); if (!FreeEntry) return STATUS_INSUFFICIENT_RESOURCES; - ASSERT(!FreeEntry->Process); - ASSERT(!FreeEntry->HandleCount); + ASSERT(!FreeEntry->Process); + ASSERT(!FreeEntry->HandleCount); }
/* Fill out the entry */ @@ -537,7 +537,7 @@ { /* Found it, get the process handle count */ ProcessHandleCount = HandleEntry->HandleCount--; - break; + break; }
/* Keep looping */