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/blenlib/intern/rand.c')
-rw-r--r--source/blender/blenlib/intern/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c
index 25a1a528db4..0afa4f81dba 100644
--- a/source/blender/blenlib/intern/rand.c
+++ b/source/blender/blenlib/intern/rand.c
@@ -200,7 +200,7 @@ float BLI_frand(void)
void BLI_frand_unit_v3(float v[3])
{
- return BLI_rng_get_float_unit_v3(&theBLI_rng, v);
+ BLI_rng_get_float_unit_v3(&theBLI_rng, v);
}
float BLI_hash_frand(unsigned int seed)