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-04-03 08:50:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-03 10:13:31 +0400
commit5873160242fe286919831bdb67d99ec5cd2395a8 (patch)
tree01f7235e6400404e069f78a490748dfa5b076e12 /source/blender/python
parent75c0ced840aa0efba6e354266b946c02b0c1d939 (diff)
Code cleanup: strict flags for bmesh_log
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c8
1 files changed, 4 insertions, 4 deletions
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;