From 1de637340bd2ae02dc4fed73d180e1f41d2ab0ee Mon Sep 17 00:00:00 2001 From: Nicky Date: Wed, 2 Jan 2013 19:14:21 +0100 Subject: [PATCH] Fix typo for code that uses direct os allocations. --- indra/llcommon/ndmemorypool.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/llcommon/ndmemorypool.cpp b/indra/llcommon/ndmemorypool.cpp index c32644f2f6..bcbc325a8c 100644 --- a/indra/llcommon/ndmemorypool.cpp +++ b/indra/llcommon/ndmemorypool.cpp @@ -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()