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>2012-04-20 22:50:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-20 22:50:18 +0400
commit15eb3452ecd96e4d79d438e8c954918639dc283d (patch)
tree438936332d24c6a1095cad0051fdd742c2f77d22 /source/blender/editors/mesh/editmesh_rip.c
parent2e20d3dc9610b702788092e9d72689b971ed9f69 (diff)
style cleanup: pep8, also quiet compiler warning.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_rip.c')
-rw-r--r--source/blender/editors/mesh/editmesh_rip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_rip.c b/source/blender/editors/mesh/editmesh_rip.c
index 1e0f0b2579b..37b12803962 100644
--- a/source/blender/editors/mesh/editmesh_rip.c
+++ b/source/blender/editors/mesh/editmesh_rip.c
@@ -228,10 +228,10 @@ static EdgeLoopPair *edbm_ripsel_looptag_helper(BMesh *bm)
break;
}
- e_first = e;
-
/* initialize */
+ e_first = e;
v_step = e_first->v1;
+ e_step = NULL; /* quiet warning, will never remain this value */
uid_start = uid;
while ((e = edbm_ripsel_edge_mark_step(v_step, uid))) {