]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fix merge conflict between commits d306c75 and 2c888ab
authorhansr <hk-git@circlestorm.org>
Wed, 8 Oct 2014 12:16:38 +0000 (14:16 +0200)
committerhansr <hk-git@circlestorm.org>
Wed, 8 Oct 2014 12:16:38 +0000 (14:16 +0200)
deflate.c

index ba7235b5a436c35adf2aeb4725e521418e2ad641..5a44b49904e2c67f161bd5e364c5054364a88e05 100644 (file)
--- a/deflate.c
+++ b/deflate.c
@@ -241,8 +241,7 @@ __attribute__ ((always_inline)) local void
 bulk_insert_str(deflate_state *s, Pos startpos, uInt count) {
     uInt idx;
     for (idx = 0; idx < count; idx++) {
-        Posf dummy;
-        INSERT_STRING(s, startpos + idx, dummy);
+        insert_string(s, startpos + idx);
     }
 }
 #endif