diff options
| author | Baitinq <[email protected]> | 2025-07-13 22:51:59 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-07-13 22:51:59 +0200 |
| commit | 34075b577715625a15488df2c7f04a4cce5a2ced (patch) | |
| tree | 3565598dd05538b5e743780fa8900807fdf0b8a8 | |
| parent | Boostrap: Support null (diff) | |
| download | pry-lang-34075b577715625a15488df2c7f04a4cce5a2ced.tar.gz pry-lang-34075b577715625a15488df2c7f04a4cce5a2ced.tar.bz2 pry-lang-34075b577715625a15488df2c7f04a4cce5a2ced.zip | |
Boostrap: Increase arena capacity
| -rw-r--r-- | src/bootstrap/main.pry | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/main.pry b/src/bootstrap/main.pry index 84824fd..347b63c 100644 --- a/src/bootstrap/main.pry +++ b/src/bootstrap/main.pry @@ -40,7 +40,7 @@ let main = (argc: i64, argv: **i8) => i64 { printf("%s\n", filename); - let alloc = arena_init(999999999); + let alloc = arena_init(99999999999); let file = read_file(filename, alloc); |