From 00a0649ca3c378bb7e4910571207617f7852c420 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 29 May 2017 15:45:07 +1000 Subject: Fix some jshint warnings --- src/loadlib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/loadlib.js') diff --git a/src/loadlib.js b/src/loadlib.js index 4e5ee60..81706e5 100644 --- a/src/loadlib.js +++ b/src/loadlib.js @@ -374,7 +374,7 @@ const ll_require_cont = function(L, status, ctx) { let name = ctx; lua.lua_pushstring(L, name); /* pass name as argument to module loader */ lua.lua_insert(L, -2); /* name is 1st argument (before search data) */ - lua.lua_callk(L, 2, 1, ctx, ll_require_cont2) + lua.lua_callk(L, 2, 1, ctx, ll_require_cont2); return ll_require_cont2(L, lua.LUA_OK, ctx); /* run loader to load module */ }; -- cgit v1.2.3-54-g00ecf