From 48166a19b4b10c32e6fad9d4cbc146110aaf5ba4 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Tue, 28 Apr 2026 16:20:24 +0200 Subject: [PATCH] whoops --- src/lua_rds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua_rds.c b/src/lua_rds.c index 2d48b86..4c080a6 100644 --- a/src/lua_rds.c +++ b/src/lua_rds.c @@ -152,7 +152,7 @@ uint8_t init_lua(RDSEncoder* _enc) { if (luaL_loadfile(L, "/etc/rds95.lua") != LUA_OK) { fprintf(stderr, "Lua error loading file: %s\n", lua_tostring(L, -1)); lua_pop(L, 1); - return; + return 0; } else { if (lua_pcall(L, 0, 0, 0) != LUA_OK) { printf("Init error: %s\n", lua_tostring(L, -1));