Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-08-01 17:12:36 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-08-01 17:12:36 +0300
commit9336aef4eb279804ee5cccec63d818810233e6c5 (patch)
treefa9268aa7f18f2c3ebf03c110d2767f97b7c8d39 /source/blender/blenlib/BLI_array_utils.h
parent583b2f9a3d9d49a23e525b998c4b1893befa8dd0 (diff)
Fix T56195: Typo in BLI_array_utils.h.
Diffstat (limited to 'source/blender/blenlib/BLI_array_utils.h')
-rw-r--r--source/blender/blenlib/BLI_array_utils.h2
1 files changed, 1 insertions, 1 deletions
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);