diff options
author | Nathan Moinvaziri <nathan@solidstatenetworks.com> | 2020-05-09 23:37:31 -0400 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-30 21:25:18 +0200 |
commit | 9b7a52352caa1ec398bdda53979de6c9ba667eab (patch) | |
tree | bc4e58265884d9a8b9f3d924cfc2079175422f7f /insert_string.c | |
parent | 7d0b252ea919f9363d3097296250e57b3a768394 (diff) |
Remove extra lines between functions and their comments.
Diffstat (limited to 'insert_string.c')
-rw-r--r-- | insert_string.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/insert_string.c b/insert_string.c index 774d18a..2bf4d71 100644 --- a/insert_string.c +++ b/insert_string.c @@ -14,7 +14,6 @@ * input characters, so that a running hash key can be computed from the * previous key instead of complete recalculation each time. */ - #define UPDATE_HASH(s, h, val) \ h = ((val * 2654435761U) >> (32 - s->hash_bits)); |