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:
authorCampbell Barton <ideasman42@gmail.com>2013-01-20 15:54:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-20 15:54:43 +0400
commit7c75bfd74483b93d08af7b20bd712b6361df2a93 (patch)
tree795dcf7ed55412f3064b124f66ab7bb68d1f87d0 /source/blender/blenlib/BLI_array.h
parent80410a4ff6ef1adae0cff5731efaf547b00e0a3f (diff)
minor change r53918 was supposed to resolve.
Diffstat (limited to 'source/blender/blenlib/BLI_array.h')
-rw-r--r--source/blender/blenlib/BLI_array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_array.h b/source/blender/blenlib/BLI_array.h
index 50febc50392..a73227490c6 100644
--- a/source/blender/blenlib/BLI_array.h
+++ b/source/blender/blenlib/BLI_array.h
@@ -96,10 +96,10 @@ void _bli_array_grow_func(void **arr_p, const void *arr_static,
/* use existing static array or allocate */ \
(LIKELY(_bli_array_totalsize(arr) >= _##arr##_count + num) ? \
(void)0 /* do nothing */ : \
- (_bli_array_grow_func((void **)&(arr), _##arr##_static, \
+ _bli_array_grow_func((void **)&(arr), _##arr##_static, \
sizeof(*arr), _##arr##_count, num, \
"BLI_array." #arr), \
- (void)0)) /* msvc2008 needs this */ \
+ (void)0) /* msvc2008 needs this */ \
), \
/* increment the array count, all conditions above are accounted for. */ \
(_##arr##_count += num))