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>2018-03-28 12:23:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-28 12:23:38 +0300
commite49d66f22cf7ac14e7254150387eb8e07114f20c (patch)
treef4486d798ae9eb3301c31ac4df9b477d545822ac /source/blender/blenlib/BLI_array_utils.h
parenta970ac5d556a5a342855a8586c50c8ec539ecbd8 (diff)
Cleanup: typo in function name
Diffstat (limited to 'source/blender/blenlib/BLI_array_utils.h')
-rw-r--r--source/blender/blenlib/BLI_array_utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_array_utils.h b/source/blender/blenlib/BLI_array_utils.h
index 644faad636a..9a510bcfc3b 100644
--- a/source/blender/blenlib/BLI_array_utils.h
+++ b/source/blender/blenlib/BLI_array_utils.h
@@ -81,11 +81,11 @@ bool _bli_array_iter_span(
arr, arr_len, sizeof(*(arr)), use_wrap, use_delimit_bounds, test_fn, user_data, \
span_step, r_span_len)
-bool _bli_array_is_zerod(
+bool _bli_array_is_zeroed(
const void *arr,
unsigned int arr_len, size_t arr_stride);
-#define BLI_array_is_zerod(arr, arr_len) \
- _bli_array_is_zerod( \
+#define BLI_array_is_zeroed(arr, arr_len) \
+ _bli_array_is_zeroed( \
arr, arr_len, sizeof(*(arr)))
#endif /* __BLI_ARRAY_UTILS_H__ */