Bump liberty

This commit is contained in:
2017-01-23 23:56:08 +01:00
parent 5570898aca
commit 5825d1b218
3 changed files with 16 additions and 16 deletions

View File

@@ -363,9 +363,8 @@ static luaL_Reg xlua_library[] =
static bool
load_one_plugin (lua_State *L, const char *name, const char *path)
{
int ret;
if (!(ret = luaL_loadfile (L, path))
&& !(ret = lua_pcall (L, 0, 0, 0)))
if (!luaL_loadfile (L, path)
&& !lua_pcall (L, 0, 0, 0))
return true;
print_error ("Lua: could not load `%s': %s", name, lua_tostring (L, -1));