diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-29 02:05:46 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-29 02:44:40 +0100 |
commit | cbe40093089ebf073b81a46ac30dffba7984b787 (patch) | |
tree | 648f20a846740acfe6b7af23add8b7fbb05615d2 | |
parent | 06d3b3bd2b8144411538ed722b1a9b679baa848f (diff) | |
download | xK-cbe40093089ebf073b81a46ac30dffba7984b787.tar.gz xK-cbe40093089ebf073b81a46ac30dffba7984b787.tar.xz xK-cbe40093089ebf073b81a46ac30dffba7984b787.zip |
degesch: fix Lua 5.3 build
Regression from the last release.
-rw-r--r-- | degesch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8449,7 +8449,7 @@ static void lua_plugin_gc (struct plugin *self_) { struct lua_plugin *self = (struct lua_plugin *) self_; - lua_gc (self->L, LUA_GCCOLLECT); + lua_gc (self->L, LUA_GCCOLLECT, 0 /* Lua 5.3 required, 5.4 varargs */); } static void |