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>2014-04-10 00:24:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-10 00:49:25 +0400
commit82628a6b0e490a180ba822336c7177cda71ba57d (patch)
treedfe4a3f7afe882da40fca593c0fcfb839c429ac9 /source/blender/blenlib/intern/BLI_mempool.c
parentc777f691ad427260fb39c8d191d3041169e557dd (diff)
Code cleanup: use struct type for mempool & style edits
Diffstat (limited to 'source/blender/blenlib/intern/BLI_mempool.c')
-rw-r--r--source/blender/blenlib/intern/BLI_mempool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_mempool.c b/source/blender/blenlib/intern/BLI_mempool.c
index 21af8afa832..b959bec319f 100644
--- a/source/blender/blenlib/intern/BLI_mempool.c
+++ b/source/blender/blenlib/intern/BLI_mempool.c
@@ -143,7 +143,7 @@ static unsigned int power_of_2_max_u(unsigned int x)
x = x | (x >> 2);
x = x | (x >> 4);
x = x | (x >> 8);
- x = x | (x >>16);
+ x = x | (x >> 16);
return x + 1;
}
#endif