From e330b2905e96ef2ad1c2df018c5fa67d11942f98 Mon Sep 17 00:00:00 2001 From: Fernando Araoz Date: Thu, 30 Jan 2025 21:05:47 -0500 Subject: [PATCH] fix: restore build --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index 1b5aa63..445568e 100644 --- a/src/main.zig +++ b/src/main.zig @@ -84,7 +84,7 @@ fn repl() !void { i.deinit(); }; - const tokens = lexic.tokenize(line, alloc, &ctx) catch |e| switch (e) { + const tokens = lexic.tokenize(line, &ctx) catch |e| switch (e) { error.OutOfMemory => { try stdout.print("FATAL ERROR: System Out of Memory!", .{}); try bw.flush();