[Bf-blender-cvs] [c1806d565cb] experimental-build: Cleanup: declaration and implementation function signature did not match

Jacques Lucke noreply at git.blender.org
Fri Jul 10 11:00:31 CEST 2020


Commit: c1806d565cbe514ff29a3058db6dc752742dcc5b
Author: Jacques Lucke
Date:   Fri Jul 10 08:37:35 2020 +0200
Branches: experimental-build
https://developer.blender.org/rBc1806d565cbe514ff29a3058db6dc752742dcc5b

Cleanup: declaration and implementation function signature did not match

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

M	source/blender/blenkernel/intern/lattice_deform.c

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

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



More information about the Bf-blender-cvs mailing list