From a5869945c69c818bf53a3043c4bf41060464963e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 1 May 2015 19:30:41 +1000 Subject: Cleanup: bmesh src/dst order in API args --- source/blender/python/bmesh/bmesh_py_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c index 8c9f4c4a42c..f810a64119b 100644 --- a/source/blender/python/bmesh/bmesh_py_utils.c +++ b/source/blender/python/bmesh/bmesh_py_utils.c @@ -253,7 +253,7 @@ static PyObject *bpy_bm_utils_vert_splice(PyObject *UNUSED(self), PyObject *args } /* should always succeed */ - ok = BM_vert_splice(bm, py_vert->v, py_vert_target->v); + ok = BM_vert_splice(bm, py_vert_target->v, py_vert->v); BLI_assert(ok == true); UNUSED_VARS_NDEBUG(ok); -- cgit v1.2.3