]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fixed whitespace in deflate_quick.
authorNathan Moinvaziri <nathan@nathanm.com>
Thu, 4 Jun 2020 18:20:38 +0000 (11:20 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sat, 27 Jun 2020 14:24:14 +0000 (16:24 +0200)
deflate_quick.c

index 63793a38bbe0077b5d93688103f8dd124f061c0f..ad1dc2ea0d42ed62e8650ae91ceb1c17aa9980c2 100644 (file)
@@ -106,7 +106,7 @@ ZLIB_INTERNAL block_state deflate_quick(deflate_state *s, int flush) {
         s->lookahead--;
     } while (s->strm->avail_out != 0);
 
-    s->insert = s->strstart < MIN_MATCH - 1 ? s->strstart : MIN_MATCH-1;
+    s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
 
     last = (flush == Z_FINISH) ? 1 : 0;
     QUICK_END_BLOCK(s, last);