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/lapi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lapi.js') diff --git a/src/lapi.js b/src/lapi.js index f326198..d992b0b 100644 --- a/src/lapi.js +++ b/src/lapi.js @@ -255,7 +255,7 @@ const lua_pushstring = function (L, s) { assert(Array.isArray(s) || s === undefined || s === null, "lua_pushstring expects array of byte"); if (s === undefined || s === null) { - L.stack[L.top] = new TValue(CT.LUA_TNIL, null) + L.stack[L.top] = new TValue(CT.LUA_TNIL, null); L.top++; } else { let ts = lstring.luaS_new(L, s); -- cgit v1.2.3-54-g00ecf