diff options
Diffstat (limited to 'src/compress.c')
| -rw-r--r-- | src/compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress.c b/src/compress.c index f9fa8ff..578441b 100644 --- a/src/compress.c +++ b/src/compress.c @@ -43,7 +43,7 @@ struct stream *stream_inflate(struct stream *s, size_t len, strm.next_in = (Bytef *) s->_cur; do { strm.avail_out = decompressed_len; - strm.next_out = (Bytef *) n->_cur; + strm.next_out = (Bytef *) n->_cur; ret = inflate(&strm, Z_NO_FLUSH); if (ret == Z_STREAM_ERROR) { stream_free(n); |