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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-05-07 22:53:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-07 22:53:05 +0400
commit65d54f34b13ddd815fdffad85b3e3e0ab542c0b1 (patch)
treef46f21df09748f6cd621b7729fcf384c17d19d73 /intern
parent3a8f1d5d8b8a95e9b3750d941fda1f8fcb549518 (diff)
Code cleanup: spelling/indentation
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_math.h b/intern/cycles/util/util_math.h
index 69c0d84c163..ded75762cd2 100644
--- a/intern/cycles/util/util_math.h
+++ b/intern/cycles/util/util_math.h
@@ -183,7 +183,7 @@ ccl_device_inline float signf(float f)
ccl_device_inline float nonzerof(float f, float eps)
{
- if(fabsf(f) < eps)
+ if(fabsf(f) < eps)
return signf(f)*eps;
else
return f;