summaryrefslogtreecommitdiff
path: root/src/htszlib.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-05-19 16:02:04 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-05-19 16:02:04 +0000
commit1433170ef4e88c4c433fd25df3864973e0e62a54 (patch)
tree1f34282f7ad759f6c8025b42f3048e6249ec7e24 /src/htszlib.c
parent063acf016081ae9c2b096595564f0399f6ea19b5 (diff)
removed gz_is_available flag (zlib is mandatory)
Diffstat (limited to 'src/htszlib.c')
-rw-r--r--src/htszlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htszlib.c b/src/htszlib.c
index f4a30b4..f78d778 100644
--- a/src/htszlib.c
+++ b/src/htszlib.c
@@ -56,7 +56,7 @@ int hts_zunpack(char *filename, char *newfile) {
int ret = -1;
char catbuff[CATBUFF_SIZE];
- if (gz_is_available && filename && newfile) {
+ if (filename && newfile) {
if (filename[0] && newfile[0]) {
// not: NOT an UTF-8 filename
gzFile gz = gzopen(filename, "rb");