diff options
| author | Baitinq <[email protected]> | 2025-05-31 23:26:13 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-31 23:54:43 +0200 |
| commit | 89d2927116ea7bee0f3cedfcf17bf32827697f4a (patch) | |
| tree | 38791f44546048636c9f83f32affc7b0e9535afc /src/bootstrap/main.src | |
| parent | Bootstrap: Tokenizer: Start rewriting with token type (diff) | |
| download | interpreter-89d2927116ea7bee0f3cedfcf17bf32827697f4a.tar.gz interpreter-89d2927116ea7bee0f3cedfcf17bf32827697f4a.tar.bz2 interpreter-89d2927116ea7bee0f3cedfcf17bf32827697f4a.zip | |
Boostrap: Tokenizer: Fix allocation
Diffstat (limited to 'src/bootstrap/main.src')
| -rw-r--r-- | src/bootstrap/main.src | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |