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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-12-02 20:01:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-12-02 20:01:06 +0400
commit818a345be3fd8378df7ec85501f0401bd0728845 (patch)
tree9d27d033920f87ae1eba10f8ec2c67052a5f62c4 /source/blender/bmesh/operators/bmo_extrude.c
parent432193552c43b9ab4546b72064390a373a3293e1 (diff)
Silent a bunch of gcc warnings (usually dummy, but noisy!).
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 065a1b57737..45c937d8bba 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;
- BMVert *v, *lastv, *firstv;
+ BMEdge **edges = NULL, *e, *laste = NULL;
+ BMVert *v = NULL, *lastv, *firstv;
BLI_array_declare(edges);
int i;