summaryrefslogtreecommitdiff
path: root/indra/llcommon/llmemory.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-09-27 11:19:07 -0700
committerRichard Linden <none@none>2013-09-27 11:19:07 -0700
commit35b591a47d71212e3b2c1b7eaca797d6927bde42 (patch)
treea3b31affbed4f91af743a8584947d400a7d7f96d /indra/llcommon/llmemory.h
parent2fad2cc7365803b63bfe2466da2558182a1c25b9 (diff)
parente0a443f5a6b76fd1ab5ffaa8e7a1941d47c80f4f (diff)
Automated merge with http://bitbucket.org/lindenlab/viewer-interesting
Diffstat (limited to 'indra/llcommon/llmemory.h')
-rwxr-xr-xindra/llcommon/llmemory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llmemory.h b/indra/llcommon/llmemory.h
index 2330bfb8ea..8daea255f9 100755
--- a/indra/llcommon/llmemory.h
+++ b/indra/llcommon/llmemory.h
@@ -145,7 +145,7 @@ inline void ll_aligned_free_32(void *p)
#if defined(LL_WINDOWS)
_aligned_free(p);
#elif defined(LL_DARWIN)
- ll_aligned_free( p );
+ ll_aligned_free_fallback( p );
#else
free(p); // posix_memalign() is compatible with heap deallocator
#endif