diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-01-04 17:30:11 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-01-04 17:30:11 -0500 |
commit | 80c884f77d377034852643fadae119342e0b25be (patch) | |
tree | 554f4c56e4530db2b7872a2ace15f9c63511fc2e /indra/llmath/tests | |
parent | 1435a8b9e6203911d2ebe9e3ba217f8eb20e3140 (diff) |
Fix for build failure
Diffstat (limited to 'indra/llmath/tests')
-rwxr-xr-x | indra/llmath/tests/alignment_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/tests/alignment_test.cpp b/indra/llmath/tests/alignment_test.cpp index dc9b41957d..044e05e961 100755 --- a/indra/llmath/tests/alignment_test.cpp +++ b/indra/llmath/tests/alignment_test.cpp @@ -73,7 +73,7 @@ void alignment_test_object_t::test<1>() align_ptr = ll_aligned_malloc_16(sizeof(MyVector4a));
ensure("ll_aligned_malloc_16 failed", is_aligned(align_ptr,16));
- align_ptr = ll_aligned_realloc_16(2*sizeof(MyVector4a));
+ align_ptr = ll_aligned_realloc_16(align_ptr,2*sizeof(MyVector4a));
ensure("ll_aligned_realloc_16 failed", is_aligned(align_ptr,16));
ll_aligned_free_16(align_ptr);
|