diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-29 15:45:07 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-29 15:51:03 +1000 |
commit | 00a0649ca3c378bb7e4910571207617f7852c420 (patch) | |
tree | c04497d6183b248992882f56aa5135559b21a089 /src/loadlib.js | |
parent | a5e267bf7df32e3ff6add67b7985c587fe8e3fb1 (diff) | |
download | fengari-00a0649ca3c378bb7e4910571207617f7852c420.tar.gz fengari-00a0649ca3c378bb7e4910571207617f7852c420.tar.bz2 fengari-00a0649ca3c378bb7e4910571207617f7852c420.zip |
Fix some jshint warnings
Diffstat (limited to 'src/loadlib.js')
-rw-r--r-- | src/loadlib.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ }; |