shithub: neindaw

Download patch

ref: 42599f25a9d3759f5f6b1707f039d81a1474351d
parent: 03bbdd2116025795128eed80b55bfbb2fcdb71c2
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Wed May 13 11:38:39 EDT 2020

increase max instances to 64

--- a/fs.c
+++ b/fs.c
@@ -11,7 +11,7 @@
 #define MIN(a,b) ((a)<=(b)?(a):(b))
 
 enum {
-	Maxobjs = 32,
+	Maxobjs = 64,
 };
 
 static Aux *objs[Maxobjs];