summaryrefslogtreecommitdiff
path: root/src/decompress.c
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-01-13 16:47:22 -0500
committerjakob <jakob@memeware.net>2017-01-13 16:47:22 -0500
commitb51100b3330605a6c9bdb3e07e7f9981ff73f6ec (patch)
tree4b59fc4b93746435d2ce5bc9e4d4da51f79d0c21 /src/decompress.c
parent43e539561a4ea95274468b78735555d6e89fdfd9 (diff)
Removed debugging information and fixed filenames from being cut off.
Diffstat (limited to 'src/decompress.c')
-rw-r--r--src/decompress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decompress.c b/src/decompress.c
index 12f6848..dd19958 100644
--- a/src/decompress.c
+++ b/src/decompress.c
@@ -63,7 +63,7 @@ Bytef *inflate_chunk(Bytef *chunk, uint64_t chunk_size,
} while (data_stream.avail_out == 0);
} while (status_code != Z_STREAM_END);
- // inflateEnd(&data_stream);
+ inflateEnd(&data_stream);
return decompressed_data;
}