[Bf-blender-cvs] [4d1c3c029ee] master: Cleanup: declaration and implementation function signature did not match

Jacques Lucke noreply at git.blender.org
Fri Jul 10 15:49:09 CEST 2020


Commit: 4d1c3c029eeba865203fa5303046024dd0feb599
Author: Jacques Lucke
Date:   Fri Jul 10 08:37:35 2020 +0200
Branches: master
https://developer.blender.org/rB4d1c3c029eeba865203fa5303046024dd0feb599

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