aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lobject.js2
1 files changed, 1 insertions, 1 deletions
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']: