degesch: fix Lua 5.3 build

Regression from the last release.
This commit is contained in:
Přemysl Eric Janouch 2020-10-29 02:05:46 +01:00
parent 06d3b3bd2b
commit cbe4009308
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -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