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/editors/mesh
parent75c0ced840aa0efba6e354266b946c02b0c1d939 (diff)
Code cleanup: strict flags for bmesh_log
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 1e4c8b4e930..68f80087e31 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -3883,7 +3883,7 @@ static void sort_bmelem_flag(Scene *scene, Object *ob,
/* Just to mark protected elements. */
char *pblock[3] = {NULL, NULL, NULL}, *pb;
BMElemSort *sblock[3] = {NULL, NULL, NULL}, *sb;
- int *map[3] = {NULL, NULL, NULL}, *mp;
+ unsigned int *map[3] = {NULL, NULL, NULL}, *mp;
int totelem[3] = {0, 0, 0};
int affected[3] = {0, 0, 0};
int i, j;
@@ -4055,7 +4055,7 @@ static void sort_bmelem_flag(Scene *scene, Object *ob,
}
else if (action == SRT_SELECTED) {
- int *tbuf[3] = {NULL, NULL, NULL}, *tb;
+ unsigned int *tbuf[3] = {NULL, NULL, NULL}, *tb;
if (totelem[0]) {
tb = tbuf[0] = MEM_callocN(sizeof(int) * totelem[0], "sort_bmelem vert tbuf");