From 4a6c30d490f903abf077152ce2f88b85b8ee25e6 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 21 May 2017 21:56:32 +1000 Subject: src/lobject.js: missing semicolon --- src/lobject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lobject.js b/src/lobject.js index 4e0fa6f..3e5e536 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -468,7 +468,7 @@ const luaO_pushvfstring = function(L, fmt, argp) { switch(fmt[e+1]) { case char['s']: let s = argp[a++]; - if (s === null) s = defs.to_luastring("(null)", true) + if (s === null) s = defs.to_luastring("(null)", true); pushstr(L, s); break; case char['c']: -- cgit v1.2.3-54-g00ecf