]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Remove extra lines between functions and their comments.
authorNathan Moinvaziri <nathan@solidstatenetworks.com>
Sun, 10 May 2020 03:37:31 +0000 (23:37 -0400)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sat, 30 May 2020 19:25:18 +0000 (21:25 +0200)
insert_string.c
insert_string_tpl.h

index 774d18ada9efafa21c39d29086880ee2cec62350..2bf4d716e6afe7d669f2519dcf0645ae8feb6316 100644 (file)
@@ -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));
 
index c80c9f8ba03c9e19553f78bfbc2013e31d2389c6..9de7d5d66d9fb7cab610a2ef5722bad644b291e3 100644 (file)
@@ -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;