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 | 070c343bfb9dc26248ab73719f37f6b5888f5217 (patch) | |
tree | 1fb523edd504d6683170e801e1c6c9c41e0b37d1 /gzio.c | |
parent | 29c6d17108aca455ac5c7e2e26b996f3b0cb4469 (diff) | |
download | txr-070c343bfb9dc26248ab73719f37f6b5888f5217.tar.gz txr-070c343bfb9dc26248ab73719f37f6b5888f5217.tar.bz2 txr-070c343bfb9dc26248ab73719f37f6b5888f5217.zip |
gzio: remove real-time-mode flag.
* gzio.c (struct gzio_handle): Remove is_real_time flag.
(make_gzio_stream): Remove initialization of flag.
Diffstat (limited to 'gzio.c')
-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; |