[Bf-blender-cvs] [9336aef4eb2] master: Fix T56195: Typo in BLI_array_utils.h.

Bastien Montagne noreply at git.blender.org
Wed Aug 1 16:12:52 CEST 2018


Commit: 9336aef4eb279804ee5cccec63d818810233e6c5
Author: Bastien Montagne
Date:   Wed Aug 1 16:12:36 2018 +0200
Branches: master
https://developer.blender.org/rB9336aef4eb279804ee5cccec63d818810233e6c5

Fix T56195: Typo in BLI_array_utils.h.

===================================================================

M	source/blender/blenlib/BLI_array_utils.h

===================================================================

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);



More information about the Bf-blender-cvs mailing list