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-05-13 06:10:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-13 06:10:59 +0400
commitc961c56c64eac7b7b8aaea771bbc1d58ca182d6e (patch)
tree9c8c02776c4390a103514f9af70dcf4cc504aee4 /source/blender/bmesh
parent210762059354c5abcc0fe92d2c729fb85f46f1b6 (diff)
add missing STACK_INIT, also quiet float <> double conversion warnings.
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/operators/bmo_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_utils.c b/source/blender/bmesh/operators/bmo_utils.c
index fe71ea534c5..2a8c8c8e2cd 100644
--- a/source/blender/bmesh/operators/bmo_utils.c
+++ b/source/blender/bmesh/operators/bmo_utils.c
@@ -359,6 +359,7 @@ void bmo_recalc_face_normals_exec(BMesh *bm, BMOperator *op)
* stack (if we use simple function recursion, we'd end up overloading
* the stack on large meshes). */
+ STACK_INIT(fstack);
STACK_PUSH(fstack, startf);
BMO_elem_flag_enable(bm, startf, FACE_VIS);