From 85d53620aa698029c83c9b596dbd4dcc8bb5c6da Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 4 Sep 2017 14:23:39 +1000 Subject: Cleanup: avoid confusing assignment --- source/blender/python/bmesh/bmesh_py_ops_call.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.c b/source/blender/python/bmesh/bmesh_py_ops_call.c index f3fe4ff29e4..6598d402f72 100644 --- a/source/blender/python/bmesh/bmesh_py_ops_call.c +++ b/source/blender/python/bmesh/bmesh_py_ops_call.c @@ -200,12 +200,12 @@ static int bpy_slot_from_py( { /* XXX - BMesh operator design is crappy here, operator slot should define matrix size, * not the caller! */ - unsigned short size; MatrixObject *pymat; if (!Matrix_ParseAny(value, &pymat)) { return -1; } - if (((size = pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) { + const ushort size = pymat->num_col; + if ((size != pymat->num_row) || (!ELEM(size, 3, 4))) { PyErr_Format(PyExc_TypeError, "%.200s: keyword \"%.200s\" expected a 3x3 or 4x4 matrix Matrix", opname, slot_name); -- cgit v1.2.3