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-01-28 16:00:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-28 16:01:22 +0400
commitc2da706a36ca355509d9dc2abcffc1edc6c49fff (patch)
tree079e1fee7010538b22b61402b9e24a1e032c5cbf /source/blender/blenlib/intern/smallhash.c
parent59d1387c4154b4a285e8c53eca2128fbe59aeb54 (diff)
Code cleanup: remove references to svn and code style
Diffstat (limited to 'source/blender/blenlib/intern/smallhash.c')
-rw-r--r--source/blender/blenlib/intern/smallhash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/smallhash.c b/source/blender/blenlib/intern/smallhash.c
index 45a9c5837d5..3812d2955c9 100644
--- a/source/blender/blenlib/intern/smallhash.c
+++ b/source/blender/blenlib/intern/smallhash.c
@@ -96,8 +96,8 @@ BLI_INLINE SmallHashEntry *smallhash_lookup_first_free(SmallHash *hash, uintptr_
unsigned int hoff = 1;
for (entry = &hash->table[h % hash->size];
- !ELEM(entry->val, SMHASH_CELL_UNUSED, SMHASH_CELL_FREE);
- h = SMHASH_NEXT(h, hoff), entry = &hash->table[h % hash->size])
+ !ELEM(entry->val, SMHASH_CELL_UNUSED, SMHASH_CELL_FREE);
+ h = SMHASH_NEXT(h, hoff), entry = &hash->table[h % hash->size])
{
/* Nothing else to do! */
}