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:
authorJacques Lucke <jacques@blender.org>2020-07-10 09:37:35 +0300
committerJacques Lucke <jacques@blender.org>2020-07-10 16:48:46 +0300
commit4d1c3c029eeba865203fa5303046024dd0feb599 (patch)
tree3c4f355da5225431cafeb06fa7d86699e481796e /source/blender
parentf93e0f1a9eefb162cf9432240b101a5d9c372910 (diff)
Cleanup: declaration and implementation function signature did not match
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/lattice_deform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/lattice_deform.c b/source/blender/blenkernel/intern/lattice_deform.c
index 2b3349d4d9a..674ee9ed2c5 100644
--- a/source/blender/blenkernel/intern/lattice_deform.c
+++ b/source/blender/blenkernel/intern/lattice_deform.c
@@ -418,8 +418,8 @@ static void lattice_deform_coords_impl(const Object *ob_lattice,
void BKE_lattice_deform_coords(const Object *ob_lattice,
const Object *ob_target,
float (*vert_coords)[3],
- int vert_coords_len,
- short flag,
+ const int vert_coords_len,
+ const short flag,
const char *defgrp_name,
float fac)
{