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>2015-08-22 14:17:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-22 14:17:32 +0300
commit58c9a0b11a0e705f68d741107faba51d9d17000e (patch)
tree00565c86028934d9e8ce6cb382c6823baa8d25c8 /source/blender/python/mathutils/mathutils_bvhtree.c
parentc1c07b68b82e221db6dd9855a6c2c4162c1d8e02 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/python/mathutils/mathutils_bvhtree.c')
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.c b/source/blender/python/mathutils/mathutils_bvhtree.c
index 506b64709e3..a207b63e652 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.c
+++ b/source/blender/python/mathutils/mathutils_bvhtree.c
@@ -522,8 +522,8 @@ static PyObject *py_bvhtree_overlap(PyBVHTree *self, PyBVHTree *other)
item = PyTuple_New(2);
PyTuple_SET_ITEMS(item,
- PyLong_FromLong(overlap[i].indexA),
- PyLong_FromLong(overlap[i].indexB));
+ PyLong_FromLong(overlap[i].indexA),
+ PyLong_FromLong(overlap[i].indexB));
PyList_Append(ret, item);
Py_DECREF(item);