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>2014-04-27 16:02:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-27 16:02:59 +0400
commitd7d2e71a037ca986fda9ba6f6d057a2d24ace4e0 (patch)
tree6aea992ce79001c7957442097025e245f4a01b49 /source/blender/blenlib/intern
parentc26105278fd770241763e04645dfcf5097e1c5d4 (diff)
Correct some errors in auto-cleanup
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/math_geom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index 36b26f91666..a12896049f5 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -95,8 +95,8 @@ float normal_quad_v3(float n[3], const float v1[3], const float v2[3], const flo
*/
float normal_poly_v3(float n[3], const float verts[][3], unsigned int nr)
{
- const float const *v_prev = verts[nr - 1];
- const float const *v_curr = verts[0];
+ const float *v_prev = verts[nr - 1];
+ const float *v_curr = verts[0];
unsigned int i;
zero_v3(n);