[FORMATTING] apply a consistent indentation (4 spaces), no code change

svn path=/trunk/; revision=32553
This commit is contained in:
Timo Kreuzer 2008-03-04 00:14:11 +00:00
parent 7f8158f09e
commit 351736138c

View file

@ -165,8 +165,13 @@ GDIOBJ_iAllocHandleTable(OUT PSECTION_OBJECT *SectionObject)
{ {
if (ObjTypeInfo[ObjType].bUseLookaside) if (ObjTypeInfo[ObjType].bUseLookaside)
{ {
ExInitializePagedLookasideList(HandleTable->LookasideLists + ObjType, NULL, NULL, 0, ExInitializePagedLookasideList(HandleTable->LookasideLists + ObjType,
ObjTypeInfo[ObjType].ulBodySize, ObjTypeInfo[ObjType].Tag, 0); NULL,
NULL,
0,
ObjTypeInfo[ObjType].ulBodySize,
ObjTypeInfo[ObjType].Tag,
0);
} }
} }
@ -804,7 +809,8 @@ GDI_CleanupForProcess (struct _EPROCESS *Process)
Entry++, Index++) Entry++, Index++)
{ {
/* ignore the lock bit */ /* ignore the lock bit */
if((HANDLE)((ULONG_PTR)Entry->ProcessId & ~0x1) == ProcId && (Entry->Type & ~GDI_ENTRY_REUSE_MASK) != 0) if ( (HANDLE)((ULONG_PTR)Entry->ProcessId & ~0x1) == ProcId &&
(Entry->Type & ~GDI_ENTRY_REUSE_MASK) != 0 )
{ {
HGDIOBJ ObjectHandle; HGDIOBJ ObjectHandle;