summaryrefslogtreecommitdiff
path: root/src/loslib.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-12-29 00:48:15 +1100
committerdaurnimator <quae@daurnimator.com>2017-12-29 02:32:41 +1100
commitc93673f0af0ebdc5165cf0acc340f65b6c6fa786 (patch)
tree9da0e536d0cb10e25fc4fe8df4705f87326136af /src/loslib.js
parentf9375fcb71171d7b18190fa59ec402f7f68e26dd (diff)
downloadfengari-c93673f0af0ebdc5165cf0acc340f65b6c6fa786.tar.gz
fengari-c93673f0af0ebdc5165cf0acc340f65b6c6fa786.tar.bz2
fengari-c93673f0af0ebdc5165cf0acc340f65b6c6fa786.zip
src/: Pass js string to luaL_opt(l)string
Diffstat (limited to 'src/loslib.js')
-rw-r--r--src/loslib.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/loslib.js b/src/loslib.js
index ecd42f1..99e5787 100644
--- a/src/loslib.js
+++ b/src/loslib.js
@@ -86,7 +86,7 @@ const checkoption = function(L, conv, i, buff) {
const os_date = function(L) {
- let s = lauxlib.luaL_optlstring(L, 1, lua.to_luastring("%c"));
+ let s = lauxlib.luaL_optlstring(L, 1, "%c");
let t = lauxlib.luaL_opt(L, l_checktime, 2, new Date().getTime() / 1000) * 1000;
let stm = new Date(t);
let utc = false;