From 7f4735ab3bfdc2e6647e132b36c919f390f52438 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 17 Jul 2014 10:11:43 +1000 Subject: bmesh py api: BPY_BM_CHECK_SOURCE_* macro now accepts multiple args --- source/blender/python/bmesh/bmesh_py_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/bmesh/bmesh_py_utils.c') diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c index a1e11d197d5..56a6dafc4f1 100644 --- a/source/blender/python/bmesh/bmesh_py_utils.c +++ b/source/blender/python/bmesh/bmesh_py_utils.c @@ -630,7 +630,7 @@ static PyObject *bpy_bm_utils_face_vert_separate(PyObject *UNUSED(self), PyObjec bm = py_face->bm; BPY_BM_CHECK_OBJ(py_face); - BPY_BM_CHECK_SOURCE_OBJ(py_vert, bm, "face_vert_separate()"); + BPY_BM_CHECK_SOURCE_OBJ(bm, "face_vert_separate()", py_vert); l = BM_face_vert_share_loop(py_face->f, py_vert->v); -- cgit v1.2.3