aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2020-10-29 02:05:46 +0100
committerPřemysl Eric Janouch <p@janouch.name>2020-10-29 02:44:40 +0100
commitcbe40093089ebf073b81a46ac30dffba7984b787 (patch)
tree648f20a846740acfe6b7af23add8b7fbb05615d2
parent06d3b3bd2b8144411538ed722b1a9b679baa848f (diff)
downloadxK-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/degesch.c b/degesch.c
index 9f03dcd..f1168d6 100644
--- a/degesch.c
+++ b/degesch.c
@@ -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