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-01-21 19:56:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-21 19:56:52 +0400
commit00119e5ac28d98b8a3febe405f336c1ec02cdbd6 (patch)
tree38f059324f97d7f7cb9dfec6c5ec6283e3fe7232 /source/blender/blenkernel/BKE_mesh.h
parent4ae7ae6f2e49287f4565b8bd6bec486f37a826af (diff)
Code Cleanup: reduce sign conversion
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h
index 302f71e61bf..47fd7dab2e5 100644
--- a/source/blender/blenkernel/BKE_mesh.h
+++ b/source/blender/blenkernel/BKE_mesh.h
@@ -211,7 +211,7 @@ bool BKE_mesh_center_centroid(struct Mesh *me, float cent[3]);
/* tessface */
void BKE_mesh_loops_to_mface_corners(
struct CustomData *fdata, struct CustomData *ldata,
- struct CustomData *pdata, int lindex[4], int findex,
+ struct CustomData *pdata, unsigned int lindex[4], int findex,
const int polyindex, const int mf_len,
const int numTex, const int numCol,
const bool hasPCol, const bool hasOrigSpace);