]> git.donarmstrong.com Git - samtools.git/blobdiff - bcftools/bcf.c
updated with the latest bgzf library
[samtools.git] / bcftools / bcf.c
index a538e6e14d7a0a78af7927b92073d05da0844640..0524408da6cf29f4deb6cee09c69d3dce61c4841 100644 (file)
@@ -13,9 +13,6 @@ bcf_t *bcf_open(const char *fn, const char *mode)
        } else {
                b->fp = strcmp(fn, "-")? bgzf_open(fn, mode) : bgzf_fdopen(fileno(stdin), mode);
        }
-#ifndef BCF_LITE
-       b->fp->owned_file = 1;
-#endif
        return b;
 }