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-12-24 11:56:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-24 11:56:07 +0400
commit3ffba79ac63b327fc02ddb9e27526aa395d93fac (patch)
treea58a49d885039a9b9556dff0ad8177e393fddd45 /source/blender/bmesh/operators
parent890170180863e3d37d44baf7e7af9f6e051d5518 (diff)
Fix for own recent commit
Diffstat (limited to 'source/blender/bmesh/operators')
-rw-r--r--source/blender/bmesh/operators/bmo_removedoubles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_removedoubles.c b/source/blender/bmesh/operators/bmo_removedoubles.c
index 8eb94b9a743..a771e05acfc 100644
--- a/source/blender/bmesh/operators/bmo_removedoubles.c
+++ b/source/blender/bmesh/operators/bmo_removedoubles.c
@@ -48,7 +48,7 @@ static void remdoubles_splitface(BMFace *f, BMesh *bm, BMOperator *op, BMOpSlot
/* ok: if v_tar is NULL (e.g. not in the map) then it's
* a target vert, otherwise it's a double */
if (v_tar) {
- BMLoop *l_tar = BM_face_vert_share_loop(f, v_tar);
+ l_tar = BM_face_vert_share_loop(f, v_tar);
if (l_tar && (l_tar != l) && !BM_loop_is_adjacent(l_tar, l)) {
l_double = l;