summaryrefslogtreecommitdiffstats
path: root/byterun/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/io.c')
-rw-r--r--byterun/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/io.c b/byterun/io.c
index 420194466..49f2e2f1a 100644
--- a/byterun/io.c
+++ b/byterun/io.c
@@ -387,7 +387,7 @@ static void finalize_channel(value vchan)
static value alloc_channel(struct channel *chan)
{
- value res = alloc_final(2, finalize_channel, 1, 32);
+ value res = alloc_final(2, finalize_channel, 1, 1000);
Field(res, 1) = (value) chan;
return res;
}