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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-22 14:18:58 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-22 14:18:58 +0400
commitc821fc85d3a10e4932ea6ec7229c636f271a4c0b (patch)
treea19ec2305b915d0cb24b560ff99e54a3bbb53136 /source/blender
parent6540bb1375b025ef0b65bc65a54b7f8ea6cfed8e (diff)
index for openmp loop needs to be signed int.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/intern/BLI_kdopbvh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_kdopbvh.c b/source/blender/blenlib/intern/BLI_kdopbvh.c
index 0204f9b1430..8c0be971682 100644
--- a/source/blender/blenlib/intern/BLI_kdopbvh.c
+++ b/source/blender/blenlib/intern/BLI_kdopbvh.c
@@ -1128,7 +1128,8 @@ static void traverse(BVHOverlapData *data, BVHNode *node1, BVHNode *node2)
BVHTreeOverlap *BLI_bvhtree_overlap(BVHTree *tree1, BVHTree *tree2, unsigned int *result)
{
- unsigned int j, total = 0;
+ int j;
+ unsigned int total = 0;
BVHTreeOverlap *overlap = NULL, *to = NULL;
BVHOverlapData **data;