This commit is contained in:
2026-05-19 21:21:56 +01:00
parent eaede95bac
commit cafb33d5f0
+1 -2
View File
@@ -90,8 +90,7 @@ int start_lua_child(lua_State *L,
lua_setglobal(L, "arg");
int status = luaL_dofile(L, pathname);
if (status) {
fprintf(stderr, "Error: %s\n", lua_tostring(L, -1));
return 1;
die("Lua error: %s", lua_tostring(L, -1));
} else {
return 0;
}