From e2dc3313fe66e9091a57b5768ab2a43f8972faa7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 18 Aug 2013 14:35:53 +0000 Subject: [PATCH] correct recent commit --- source/blender/bmesh/operators/bmo_fill_holes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/bmesh/operators/bmo_fill_holes.c b/source/blender/bmesh/operators/bmo_fill_holes.c index 40a682e790d..844205f5b91 100644 --- a/source/blender/bmesh/operators/bmo_fill_holes.c +++ b/source/blender/bmesh/operators/bmo_fill_holes.c @@ -77,7 +77,7 @@ static BMFace *bm_face_from_eloop(BMesh *bm, struct BMEdgeLoopStore *el_store) } while ((node = node->next)); f = BM_face_create_ngon_verts(bm, f_verts, len, 0, true, false); - BM_face_copy_shared(bm, f); + BM_face_copy_shared(bm, f, NULL, NULL); l = bm_face_find_longest_loop_manifold(f); if (l) {