From 9336aef4eb279804ee5cccec63d818810233e6c5 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 1 Aug 2018 16:12:36 +0200 Subject: Fix T56195: Typo in BLI_array_utils.h. --- source/blender/blenlib/BLI_array_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_array_utils.h b/source/blender/blenlib/BLI_array_utils.h index 9a510bcfc3b..da03063b245 100644 --- a/source/blender/blenlib/BLI_array_utils.h +++ b/source/blender/blenlib/BLI_array_utils.h @@ -41,7 +41,7 @@ void _bli_array_permute( const unsigned int *index, void *arr_temp); #define BLI_array_permute(arr, arr_len, order) \ _bli_array_permute(arr, arr_len, sizeof(*(arr)), order, NULL) -#define BLI_array_permute_ex(arr, arr_len, index, arr_temp) \ +#define BLI_array_permute_ex(arr, arr_len, order, arr_temp) \ _bli_array_permute(arr, arr_len, sizeof(*(arr)), order, arr_temp) int _bli_array_findindex(const void *arr, unsigned int arr_len, size_t arr_stride, const void *p); -- cgit v1.2.3