aboutsummaryrefslogtreecommitdiff
path: root/src/lauxlib.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann008@gmail.com>2017-03-31 11:15:46 +0200
committerBenoit Giannangeli <giann008@gmail.com>2017-03-31 11:23:06 +0200
commitdbcb965525833d167370fdade4ff8da7126be8a6 (patch)
tree19c530db542e2e62907958a843da10ec604ca300 /src/lauxlib.js
parentfedcb75c0fa087abcaa53a1df3304a97c4516faa (diff)
downloadfengari-dbcb965525833d167370fdade4ff8da7126be8a6.tar.gz
fengari-dbcb965525833d167370fdade4ff8da7126be8a6.tar.bz2
fengari-dbcb965525833d167370fdade4ff8da7126be8a6.zip
Use correct sprintf package
Diffstat (limited to 'src/lauxlib.js')
-rw-r--r--src/lauxlib.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lauxlib.js b/src/lauxlib.js
index 90cff5c..5a13379 100644
--- a/src/lauxlib.js
+++ b/src/lauxlib.js
@@ -292,15 +292,15 @@ const luaL_len = function(L, idx) {
lapi.lua_len(L, idx);
let l = lapi.lua_tointegerx(L, -1);
if (l === false)
- luaL_error(L, "object length is not an integer");
+ luaL_error(L, lua.to_luastring("object length is not an integer"));
lapi.lua_pop(L, 1); /* remove object */
return l;
};
const luaL_tolstring = function(L, idx) {
- if (luaL_callmeta(L, idx, "__tostring")) {
+ if (luaL_callmeta(L, idx, lua.to_luastring("__tostring"))) {
if (!lapi.lua_isstring(L, -1))
- luaL_error(L, "'__tostring' must return a string");
+ luaL_error(L, lua.to_luastring("'__tostring' must return a string"));
} else {
switch(lapi.lua_type(L, idx)) {
case CT.LUA_TNUMBER: