index for openmp loop needs to be signed int.

This commit is contained in:
Nathan Letwory 2010-10-22 10:18:58 +00:00
parent 6540bb1375
commit c821fc85d3

@ -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;