From 89d2927116ea7bee0f3cedfcf17bf32827697f4a Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sat, 31 May 2025 23:26:13 +0200 Subject: Boostrap: Tokenizer: Fix allocation --- src/bootstrap/main.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bootstrap/main.src') diff --git a/src/bootstrap/main.src b/src/bootstrap/main.src index 192869b..bb840b5 100644 --- a/src/bootstrap/main.src +++ b/src/bootstrap/main.src @@ -13,7 +13,7 @@ let main = (argc: i64, argv: **i8) => i64 { println("%s", filename); - let alloc = arena_init(9999999999); + let alloc = arena_init(999999999); tokenizer_init(alloc, filename); tokenizer_deinit(); -- cgit 1.4.1