summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--insert_string.c1
-rw-r--r--insert_string_tpl.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/insert_string.c b/insert_string.c
index 774d18ada9..2bf4d716e6 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));
diff --git a/insert_string_tpl.h b/insert_string_tpl.h
index c80c9f8ba0..9de7d5d66d 100644
--- a/insert_string_tpl.h
+++ b/insert_string_tpl.h
@@ -27,7 +27,6 @@
* of the hash chain (the most recent string with same hash key). Return
* the previous length of the hash chain.
*/
-
ZLIB_INTERNAL Pos QUICK_INSERT_STRING(deflate_state *const s, const Pos str) {
Pos head;
uint32_t val, hm, h = 0;
@@ -60,7 +59,6 @@ ZLIB_INTERNAL Pos QUICK_INSERT_STRING(deflate_state *const s, const Pos str) {
* input characters and the first MIN_MATCH bytes of str are valid
* (except for the last MIN_MATCH-1 bytes of the input file).
*/
-
ZLIB_INTERNAL Pos INSERT_STRING(deflate_state *const s, const Pos str, unsigned int count) {
Pos idx, ret;
uint8_t *strstart, *strend;