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>2016-04-27 05:49:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-27 06:12:55 +0300
commit9bd51735a10280af3cf56edf3698961a1e230d4d (patch)
tree83a7ce455b4e737afed43e072552db35b5879716 /source/blender/editors/mask/mask_add.c
parentc2cdc673758039653db3d2035704858406e7b4ea (diff)
Cleanup: use const, duplicate header
Diffstat (limited to 'source/blender/editors/mask/mask_add.c')
-rw-r--r--source/blender/editors/mask/mask_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mask/mask_add.c b/source/blender/editors/mask/mask_add.c
index 822bb429f9e..3730cff731c 100644
--- a/source/blender/editors/mask/mask_add.c
+++ b/source/blender/editors/mask/mask_add.c
@@ -196,7 +196,7 @@ bool ED_mask_find_nearest_diff_point(const bContext *C,
static void setup_vertex_point(Mask *mask, MaskSpline *spline, MaskSplinePoint *new_point,
const float point_co[2], const float u,
- MaskSplinePoint *reference_point, const bool reference_adjacent)
+ const MaskSplinePoint *reference_point, const bool reference_adjacent)
{
MaskSplinePoint *prev_point = NULL;
MaskSplinePoint *next_point = NULL;