Correct error in recent use of PyC_Long_*

Regression in 46cf33bf0
This commit is contained in:
Campbell Barton 2017-08-25 02:09:23 +10:00
parent 9662803833
commit 738d942d29
Notes: blender-bot 2023-10-13 01:54:23 +02:00
Referenced by issue #52517, Offset edge error
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ static int bpy_bm_elem_hflag_set(BPy_BMElem *self, PyObject *value, void *flag)
else {
BM_elem_flag_set(self->ele, hflag, param);
}
return -1;
return 0;
}
PyDoc_STRVAR(bpy_bm_elem_index_doc,