Fix typo for code that uses direct os allocations.

Nicky 2013-01-02 19:14:21 +01:00
parent 9b5cc783bd
commit 1de637340b
1 changed files with 3 additions and 3 deletions

View File

@ -459,7 +459,7 @@ namespace ndMemoryPool
{
void startUp()
{
ndMalloStats::startUp();
ndMallocStats::startUp();
}
void tearDown()
@ -475,7 +475,7 @@ namespace ndMemoryPool
void *realloc( void *ptr, size_t aSize, size_t aAlign )
{
ndMalloStats::addStat( aSize );
ndMallocStats::addStat( aSize );
return OSAllocator::realloc( ptr, aSize, aAlign );
}
@ -486,7 +486,7 @@ namespace ndMemoryPool
void dumpStats( std::ostream &aOut )
{
ndMalloStats::dumpStats( aOut );
ndMallocStats::dumpStats( aOut );
}
void tryShrink()