From c821fc85d3a10e4932ea6ec7229c636f271a4c0b Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Fri, 22 Oct 2010 10:18:58 +0000 Subject: index for openmp loop needs to be signed int. --- source/blender/blenlib/intern/BLI_kdopbvh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender') 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; -- cgit v1.2.3