From a1ab2659a3a6fe0d5a988f90181abfdfec4a7e0a Mon Sep 17 00:00:00 2001 From: luccie Date: Sun, 10 Aug 2025 22:11:45 +0200 Subject: [PATCH] Fixed sideros.zig to match the vm name --- src/sideros.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sideros.zig b/src/sideros.zig index 2e5a5fc..5c22c70 100644 --- a/src/sideros.zig +++ b/src/sideros.zig @@ -46,7 +46,7 @@ fn init_mods() void { defer runtime.deinit(allocator); var parameters = [_]mods.VM.Value{.{ .i32 = 17 }}; - runtime.callExternal(allocator, .init, ¶meters) catch @panic("Failed to call to init"); + runtime.externalCall(allocator, .init, ¶meters) catch @panic("Failed to call to init"); const result = runtime.stack.pop().?; std.debug.print("Result of init: {any}\n", .{result}); }