diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-11 22:13:16 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-11 22:13:16 +0000 |
| commit | f81a7ccdff682acc7a7ec2e6c4dced9bcfde4387 (patch) | |
| tree | 16c864f5ffe306a661dd37a68f54d184635ed459 /src/lua_state.c | |
| parent | d057a68a837d278f5dfe55a5dc3c4998e4f126f5 (diff) | |
IT WORKSindev
Diffstat (limited to 'src/lua_state.c')
| -rw-r--r-- | src/lua_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua_state.c b/src/lua_state.c index c23eb92..623c87b 100644 --- a/src/lua_state.c +++ b/src/lua_state.c @@ -610,7 +610,7 @@ bool config_install(const char *path, const char *target) { return false; } target_loop_success = target_loop_install(L, "init.lua", target); - lua_pop(L, 1); + lua_pop(L, 2); } lua_pop(L, 1); return target_loop_success; @@ -647,7 +647,7 @@ bool config_uninstall(const char *path, const char *target) { return false; } target_loop_success = target_loop_uninstall(L, "init.lua", target); - lua_pop(L, 1); + lua_pop(L, 2); } lua_pop(L, 1); return target_loop_success; |
