From 104a35cf04f050873d407d5b2149c1efe2651a06 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 31 May 2022 01:57:32 -0700 Subject: gzio: unused variable warning. * gzio.c (gzio_set_prop): Remove unused ops variable. --- gzio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gzio.c b/gzio.c index bbdc1d45..11991aa1 100644 --- a/gzio.c +++ b/gzio.c @@ -399,7 +399,6 @@ static val gzio_get_prop(val stream, val ind) struct gzio_handle *h = coerce(struct gzio_handle *, stream->co.handle); if (ind == name_k) { - struct strm_ops *ops = coerce(struct strm_ops *, stream->co.ops); return h->descr; } else if (ind == byte_oriented_k) { return h->is_byte_oriented ? t : nil; -- cgit v1.2.3