diff options
author | Dave Parks <davep@lindenlab.com> | 2012-09-10 13:16:10 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-09-10 13:16:10 -0500 |
commit | d1c34bff3787c6228b5d89316079011a7f098cfc (patch) | |
tree | 641c5117176637932712eaade9e7ddce0ab97806 /indra/llmath/tests/alignment_test.cpp | |
parent | e10b013e4246cd276d1496ed4acc09edab0c1255 (diff) |
Fix for alignment_test.cpp compilation errors.
Diffstat (limited to 'indra/llmath/tests/alignment_test.cpp')
-rw-r--r-- | 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 ac0c45ae6f..5c426c57c3 100644 --- a/indra/llmath/tests/alignment_test.cpp +++ b/indra/llmath/tests/alignment_test.cpp @@ -78,7 +78,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(align_ptr,2*sizeof(MyVector4a)); + align_ptr = ll_aligned_realloc_16(align_ptr,2*sizeof(MyVector4a), sizeof(MyVector4a)); ensure("ll_aligned_realloc_16 failed", is_aligned(align_ptr,16)); ll_aligned_free_16(align_ptr); |