aboutsummaryrefslogtreecommitdiff
path: root/lib/cbit
diff options
context:
space:
mode:
authorcomex2015-07-17 18:17:03 -0400
committercomex2015-07-17 18:17:03 -0400
commit696f1a01cdebe0e85a086f9c7ec551ce293605c2 (patch)
tree9b81569d34714ade45fde4651b483f2637039b41 /lib/cbit
parentfix memory leak in unlikely (bug) scenario (diff)
downloadsubstitute-696f1a01cdebe0e85a086f9c7ec551ce293605c2.tar.gz
formatting
Diffstat (limited to 'lib/cbit')
-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)) { \