Fix a typo. Thanks to Hervé Poussineau for noticing.

svn path=/trunk/; revision=16946
This commit is contained in:
Filip Navara 2005-08-01 11:46:30 +00:00
parent 9b42911e3d
commit f4ff4e648a
2 changed files with 2 additions and 2 deletions

View file

@ -308,7 +308,7 @@ extern PVOID MmPagedPoolBase;
extern ULONG MmPagedPoolSize;
#define PAGED_POOL_MASK 1
#define MUST_SUCCEES_POOL_MASK 2
#define MUST_SUCCEED_POOL_MASK 2
#define CACHE_ALIGNED_POOL_MASK 4
#define QUOTA_POOL_MASK 8
#define SESSION_POOL_MASK 32

View file

@ -40,7 +40,7 @@ EiAllocatePool(POOL_TYPE PoolType,
Block = ExAllocateNonPagedPoolWithTag(PoolType,NumberOfBytes,Tag,Caller);
}
if ((PoolType & MUST_SUCCEES_POOL_MASK) && Block==NULL)
if ((PoolType & MUST_SUCCEED_POOL_MASK) && Block==NULL)
{
KEBUGCHECK(MUST_SUCCEED_POOL_EMPTY);
}