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:
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! */
}