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 f25de90c..4c112052 100644
--- a/stream.c
+++ b/stream.c
@@ -459,6 +459,7 @@ static val dev_null_close(val stream, val throw_on_error)
if (n->fd != -1) {
close(n->fd);
n->fd = -1;
+ return t;
}
return nil;
}
@@ -1847,6 +1848,7 @@ static val dir_close(val stream, val throw_on_error)
if (h->d != 0) {
closedir(coerce(DIR *, h->d));
h->d = 0;
+ return t;
}
return nil;