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>2013-10-04 21:47:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-04 21:47:58 +0400
commit0b1cf4c2ea2cf009e1991c8d258603538621aeeb (patch)
tree9ed11a7301bb8f930ca4e00724e6eed699c5713d /source/blender/blenlib
parent5dc9db3533e720f09c9a66e9489056ae00e1c394 (diff)
code cleanup: warnings and minor edits.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index ce36d1f9fc3..148aa62ee1a 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -2012,7 +2012,7 @@ void fill_poly_v2i_n(
/* Build a list of nodes. */
nodes = 0; j = nr - 1;
- for (i=0; i<nr; i++) {
+ for (i = 0; i < nr; i++) {
if ((verts[i][1] < pixel_y && verts[j][1] >= pixel_y) ||
(verts[j][1] < pixel_y && verts[i][1] >= pixel_y))
{