summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index e0916d18..ca03cb7e 100644
--- a/stream.c
+++ b/stream.c
@@ -4237,7 +4237,9 @@ val open_file(val path, val mode_str)
struct stdio_mode m, m_r = stdio_mode_init_r;
val norm_mode = normalize_mode(&m, mode_str, m_r, self);
+#if HAVE_ZLIB
again:
+#endif
if (!m.gzip) {
FILE *f = w_fopen_mode(c_str(path, self), c_str(norm_mode, self), m);