[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32649] trunk/blender/source/blender/ blenlib/intern/BLI_kdopbvh.c: index for openmp loop needs to be signed int.

Nathan Letwory nathan at letworyinteractive.com
Fri Oct 22 12:18:58 CEST 2010


Revision: 32649
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32649
Author:   jesterking
Date:     2010-10-22 12:18:58 +0200 (Fri, 22 Oct 2010)

Log Message:
-----------
index for openmp loop needs to be signed int.

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/intern/BLI_kdopbvh.c

Modified: trunk/blender/source/blender/blenlib/intern/BLI_kdopbvh.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/BLI_kdopbvh.c	2010-10-22 10:17:55 UTC (rev 32648)
+++ trunk/blender/source/blender/blenlib/intern/BLI_kdopbvh.c	2010-10-22 10:18:58 UTC (rev 32649)
@@ -1128,7 +1128,8 @@
 
 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;
 	





More information about the Bf-blender-cvs mailing list