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>2013-04-25 20:35:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-25 20:35:57 +0400
commited684977006c072d826127a253495b1d02f6f6e7 (patch)
tree9d7cc1d3553706945d30c6ebce2bef2f3cbcdac3 /source/blender/blenlib/intern/math_base_inline.c
parent8df319f5e67c19fce61d38d838bfe19f71dd413f (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/math_base_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_base_inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_base_inline.c b/source/blender/blenlib/intern/math_base_inline.c
index 61af5b5079a..f916460dec4 100644
--- a/source/blender/blenlib/intern/math_base_inline.c
+++ b/source/blender/blenlib/intern/math_base_inline.c
@@ -149,7 +149,7 @@ MINLINE int power_of_2_min_i(int n)
* with integers, to avoid gradual darkening when rounding down */
MINLINE int divide_round_i(int a, int b)
{
- return (2*a + b)/(2*b);
+ return (2 * a + b) / (2 * b);
}
MINLINE unsigned int highest_order_bit_i(unsigned int n)