diff options
author | comex | 2015-07-17 18:17:03 -0400 |
---|---|---|
committer | comex | 2015-07-17 18:17:03 -0400 |
commit | 696f1a01cdebe0e85a086f9c7ec551ce293605c2 (patch) | |
tree | 9b81569d34714ade45fde4651b483f2637039b41 /lib/cbit/htab.h | |
parent | fix memory leak in unlikely (bug) scenario (diff) | |
download | substitute-696f1a01cdebe0e85a086f9c7ec551ce293605c2.tar.gz |
formatting
Diffstat (limited to 'lib/cbit/htab.h')
-rw-r--r-- | lib/cbit/htab.h | 2 |
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)) { \ |