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>2021-04-09 07:55:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-09 08:00:03 +0300
commit3f91591c1d66440d197cddbd472313fad36f7a7b (patch)
tree555f4dded9c3ff71190b7364ecb9ceb2969e136a /source/blender/blenkernel/intern/displist.c
parent71da3f31d4972a2b3a519f201d955606ad66dd02 (diff)
Cleanup: use const for BKE_where_on_path and related structs
Diffstat (limited to 'source/blender/blenkernel/intern/displist.c')
-rw-r--r--source/blender/blenkernel/intern/displist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c
index 2f6370fa5eb..ad8939fa5d1 100644
--- a/source/blender/blenkernel/intern/displist.c
+++ b/source/blender/blenkernel/intern/displist.c
@@ -1492,7 +1492,7 @@ static void do_makeDispListCurveTypes(Depsgraph *depsgraph,
*/
if (!for_orco) {
if (ob->runtime.curve_cache->anim_path_accum_length) {
- MEM_freeN(ob->runtime.curve_cache->anim_path_accum_length);
+ MEM_freeN((void *)ob->runtime.curve_cache->anim_path_accum_length);
}
ob->runtime.curve_cache->anim_path_accum_length = NULL;
}