aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/cbit/htab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cbit/htab.h b/lib/cbit/htab.h
index 2b3eeaa..82e8117 100644
--- a/lib/cbit/htab.h
+++ b/lib/cbit/htab.h
@@ -115,7 +115,7 @@ struct htab_internal {
key_ty *hole = op; \
key_ty *cur = hole; \
while (1) { \
- if (cur == end)\
+ if (cur == end) \
cur = (void *) buckets; \
cur = (void *) ((char *) cur + entry_size); \
if (cur == hole || null_func(cur)) { \