From 070c343bfb9dc26248ab73719f37f6b5888f5217 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 27 May 2022 06:41:47 -0700 Subject: gzio: remove real-time-mode flag. * gzio.c (struct gzio_handle): Remove is_real_time flag. (make_gzio_stream): Remove initialization of flag. --- gzio.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gzio.c b/gzio.c index ef1e21ba..25f2c9d9 100644 --- a/gzio.c +++ b/gzio.c @@ -57,7 +57,6 @@ struct gzio_handle { val err, errstr; char *buf; int fd; - unsigned is_real_time : 8; unsigned is_byte_oriented : 8; unsigned is_output : 8; }; @@ -539,7 +538,6 @@ val make_gzio_stream(gzFile f, int fd, val descr, int is_output) h->err = nil; h->errstr = lit("no error"); h->buf = 0; - h->is_real_time = 0; h->is_byte_oriented = 0; h->is_output = is_output; return stream; -- cgit v1.2.3