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-12-03 12:11:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-03 12:11:04 +0400
commit0526fcf13f6a05aa1a5b32549f566e8c15c47d5e (patch)
treee175e507b41db34dc20ac8d69b211f52e4a54da5 /source/blender/bmesh/operators/bmo_extrude.c
parentca25fd0307f9387af34cfa3120cecb7e12575579 (diff)
revert part of r52720, Id rather leave these as-is, even if they give warnings under some configurations.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_extrude.c')
-rw-r--r--source/blender/bmesh/operators/bmo_extrude.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_extrude.c b/source/blender/bmesh/operators/bmo_extrude.c
index 45c937d8bba..065a1b57737 100644
--- a/source/blender/bmesh/operators/bmo_extrude.c
+++ b/source/blender/bmesh/operators/bmo_extrude.c
@@ -55,8 +55,8 @@ void bmo_extrude_discrete_faces_exec(BMesh *bm, BMOperator *op)
BMIter liter, liter2;
BMFace *f, *f2, *f3;
BMLoop *l, *l2, *l3, *l4, *l_tmp;
- BMEdge **edges = NULL, *e, *laste = NULL;
- BMVert *v = NULL, *lastv, *firstv;
+ BMEdge **edges = NULL, *e, *laste;
+ BMVert *v, *lastv, *firstv;
BLI_array_declare(edges);
int i;