From: Hans Kristian Rosbach Date: Tue, 14 Feb 2017 11:19:09 +0000 (+0100) Subject: Fix leftover charf X-Git-Tag: 1.9.9-b1~683 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcb013d915b087c62772c7e778f4954f6a3d14fa;p=thirdparty%2Fzlib-ng.git Fix leftover charf --- diff --git a/deflate.c b/deflate.c index 618493f22..ab3565089 100644 --- a/deflate.c +++ b/deflate.c @@ -1484,7 +1484,7 @@ static block_state deflate_stored(deflate_state *s, int flush) { len = MIN(left, have); last = flush == Z_FINISH && s->strm->avail_in == 0 && len == left ? 1 : 0; - _tr_stored_block(s, (charf *)s->window + s->block_start, len, last); + _tr_stored_block(s, (char *)s->window + s->block_start, len, last); s->block_start += len; flush_pending(s->strm); }