diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-01 12:31:25 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-01 12:31:25 +0000 |
commit | ef5cbcb0604cbffbb6c153a433411fedcf4e5831 (patch) | |
tree | 06ff2fa6856e43b37a78b2dfa64e56008ce91b5c /indra/llmath | |
parent | 7e0a3ce7359a01ffa7776d86f279409225c3c2a7 (diff) | |
parent | d2c2d3f58e8d150c993708cbf13fc584a557ced7 (diff) |
Merge from viewer2.
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llmath.h b/indra/llmath/llmath.h index 7a5d51ff76..209b506c30 100644 --- a/indra/llmath/llmath.h +++ b/indra/llmath/llmath.h @@ -203,7 +203,7 @@ inline S32 llfloor( F32 f ) } return result; #else - return (S32)floor(f); + return (S32)floorf(f); #endif } |