From 5873160242fe286919831bdb67d99ec5cd2395a8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 3 Apr 2014 15:50:18 +1100 Subject: Code cleanup: strict flags for bmesh_log --- source/blender/python/bmesh/bmesh_py_types.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/python') diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c index 47aff885885..6302561cb7e 100644 --- a/source/blender/python/bmesh/bmesh_py_types.c +++ b/source/blender/python/bmesh/bmesh_py_types.c @@ -2336,12 +2336,12 @@ static PyObject *bpy_bmelemseq_sort(BPy_BMElemSeq *self, PyObject *args, PyObjec BMElem *ele; int *elem_idx; - int *elem_map_idx; + unsigned int *elem_map_idx; int (*elem_idx_compare_by_keys)(const void *, const void *); - int *vert_idx = NULL; - int *edge_idx = NULL; - int *face_idx = NULL; + unsigned int *vert_idx = NULL; + unsigned int *edge_idx = NULL; + unsigned int *face_idx = NULL; int i; BMesh *bm = self->bm; -- cgit v1.2.3