From c2da706a36ca355509d9dc2abcffc1edc6c49fff Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 28 Jan 2014 23:00:28 +1100 Subject: Code cleanup: remove references to svn and code style --- source/blender/blenlib/intern/smallhash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/smallhash.c') 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! */ } -- cgit v1.2.3