From d149b737c0e61cf6970dfcc9b1ccb49072e962ed Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Sun, 19 Aug 2007 05:11:54 +0000 Subject: [PATCH] (customize-variable 'indent-tabs-mode) ; nil svn path=/trunk/; revision=28416 --- reactos/ntoskrnl/ob/obhandle.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/ntoskrnl/ob/obhandle.c b/reactos/ntoskrnl/ob/obhandle.c index 581afec4fd7..92bd85a653f 100644 --- a/reactos/ntoskrnl/ob/obhandle.c +++ b/reactos/ntoskrnl/ob/obhandle.c @@ -331,8 +331,8 @@ ObpIncrementHandleDataBase(IN POBJECT_HEADER ObjectHeader, /* 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 @@ ObpIncrementHandleDataBase(IN POBJECT_HEADER ObjectHeader, /* 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 @@ ObpDecrementHandleCount(IN PVOID ObjectBody, { /* Found it, get the process handle count */ ProcessHandleCount = HandleEntry->HandleCount--; - break; + break; } /* Keep looping */