summaryrefslogtreecommitdiff
path: root/src/include/lib/simplehash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/lib/simplehash.h')
-rw-r--r--src/include/lib/simplehash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h
index 061d9c373f..c5af5b96a7 100644
--- a/src/include/lib/simplehash.h
+++ b/src/include/lib/simplehash.h
@@ -149,7 +149,7 @@ SH_SCOPE void SH_START_ITERATE_AT(SH_TYPE * tb, SH_ITERATOR * iter, uint32 at);
SH_SCOPE SH_ELEMENT_TYPE *SH_ITERATE(SH_TYPE * tb, SH_ITERATOR * iter);
SH_SCOPE void SH_STAT(SH_TYPE * tb);
-#endif /* SH_DECLARE */
+#endif /* SH_DECLARE */
/* generate implementation of the hash table */
@@ -788,7 +788,7 @@ SH_START_ITERATE_AT(SH_TYPE * tb, SH_ITERATOR * iter, uint32 at)
* Iterate backwards, that allows the current element to be deleted, even
* if there are backward shifts.
*/
- iter->cur = at & tb->sizemask; /* ensure at is within a valid range */
+ iter->cur = at & tb->sizemask; /* ensure at is within a valid range */
iter->end = iter->cur;
iter->done = false;
}
@@ -899,7 +899,7 @@ SH_STAT(SH_TYPE * tb)
total_collisions, max_collisions, avg_collisions);
}
-#endif /* SH_DEFINE */
+#endif /* SH_DEFINE */
/* undefine external parameters, so next hash table can be defined */