diff options
| -rw-r--r-- | indra/llcommon/lltrace.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index a9d5cc58de..7694f65441 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -680,7 +680,7 @@ void* allocAligned(size_t size)  #elif LL_DARWIN  		padded_allocation = ll_aligned_malloc(size_with_reserve, ALIGNMENT);  #else -		padded_allocation = posix_memalign(&padded_allocation, ALIGNMENT, size_with_reserve); +		posix_memalign(&padded_allocation, ALIGNMENT, size_with_reserve);  #endif  	}  	return (char*)padded_allocation + aligned_reserve; | 
