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:
Diffstat (limited to 'source/blender/blenkernel/intern/particle_system.c')
-rw-r--r--source/blender/blenkernel/intern/particle_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index 206d9036ba7..e4800ac25a3 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -974,7 +974,7 @@ static int distribute_compare_orig_index(const void *p1, const void *p2)
return -1;
else if(index1 == index2) {
/* this pointer comparison appears to make qsort stable for glibc,
- * and apparently on solaris too, makes the renders reproducable */
+ * and apparently on solaris too, makes the renders reproducible */
if(p1 < p2)
return -1;
else if(p1 == p2)