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>2014-03-01 07:20:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-01 07:26:18 +0400
commit13ea967cce4032564cfbbfe3010b538486f36524 (patch)
treefff7d2eaddd8bc1b6034f76729bb34c12c555607 /source/blender/python
parent315d85faa1b4f58a91041030dcac70085808c038 (diff)
Code cleanup: correct abs use and quiet warnings
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_ops_call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.c b/source/blender/python/bmesh/bmesh_py_ops_call.c
index eef2e147736..f4fe1ede088 100644
--- a/source/blender/python/bmesh/bmesh_py_ops_call.c
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.c
@@ -503,7 +503,7 @@ static int bpy_slot_from_py(BMesh *bm, BMOperator *bmop, BMOpSlot *slot, PyObjec
{
/* can't convert from these */
PyErr_Format(PyExc_NotImplementedError,
- "This arguments mapping subtype %d is not supported", slot->slot_subtype);
+ "This arguments mapping subtype %d is not supported", slot->slot_subtype.map);
return -1;
}
}