diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-05-27 06:41:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-05-27 06:41:47 -0700 |
commit | c347a5106f6a52231c31e8cac676b46299724c81 (patch) | |
tree | 1fb523edd504d6683170e801e1c6c9c41e0b37d1 | |
parent | bcd92e5a5b0739f0f8e66bf91a6b217fdfb6ba6d (diff) | |
download | txr-c347a5106f6a52231c31e8cac676b46299724c81.tar.gz txr-c347a5106f6a52231c31e8cac676b46299724c81.tar.bz2 txr-c347a5106f6a52231c31e8cac676b46299724c81.zip |
gzio: remove real-time-mode flag.
* gzio.c (struct gzio_handle): Remove is_real_time flag.
(make_gzio_stream): Remove initialization of flag.
-rw-r--r-- | gzio.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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; |