8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:43:04 +01:00

Spelling fixed - thanks to Adriano

This commit is contained in:
alexpeshkoff 2015-10-09 11:58:06 +00:00
parent 6590c28174
commit 8638c77c2f
2 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ private:
public:
// This is maximum block size which is cached (not allocated directly from OS)
enum RecommendedBufferSize { MAX_MEDUIM_BLOCK_SIZE = 64384 }; // MediumLimits::TOP_LIMIT - 128
enum RecommendedBufferSize { MAX_MEDIUM_BLOCK_SIZE = 64384 }; // MediumLimits::TOP_LIMIT - 128
static MemoryPool* defaultMemoryManager;

View File

@ -579,8 +579,8 @@ void testAllocator()
VERIFY_POOL(pool);
VERIFY_POOL(parent);
printf("Allocate max recommended medium buffer (%d bytes): ", MemoryPool::MAX_MEDUIM_BLOCK_SIZE);
void* maxMedium = pool->allocate(MemoryPool::MAX_MEDUIM_BLOCK_SIZE);
printf("Allocate max recommended medium buffer (%d bytes): ", MemoryPool::MAX_MEDIUM_BLOCK_SIZE);
void* maxMedium = pool->allocate(MemoryPool::MAX_MEDIUM_BLOCK_SIZE);
printf(" DONE\n");
VERIFY_POOL(pool);
VERIFY_POOL(parent);