aboutsummaryrefslogtreecommitdiff
path: root/plugins/lua-loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/lua-loader.c')
-rw-r--r--plugins/lua-loader.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/lua-loader.c b/plugins/lua-loader.c
index 95550da..8fa1875 100644
--- a/plugins/lua-loader.c
+++ b/plugins/lua-loader.c
@@ -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));