diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lua/lua_thread_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_thread_pool.c b/src/lua/lua_thread_pool.c index 8220bb3ff..89a516a27 100644 --- a/src/lua/lua_thread_pool.c +++ b/src/lua/lua_thread_pool.c @@ -240,7 +240,7 @@ lua_do_resume_full (lua_State *L, gint narg, const gchar *loc) return lua_resume (L, narg); #else #if LUA_VERSION_NUM >= 504 - return lua_resume (L, from, nargs, NULL); + return lua_resume (L, NULL, narg, NULL); #else return lua_resume (L, NULL, narg); #endif |