summaryrefslogtreecommitdiff
path: root/src/lib/lbaselib.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2003-11-25 12:00:00 +0000
committerrepogen <>2003-11-25 12:00:00 +0000
commit72286a8eeb927e1a33f24e9d99bb37ec5343ad45 (patch)
tree5a325cc1666ee447433fd4a565ec7f12be57f00f /src/lib/lbaselib.c
parentf0e4e22f5c119865eb5a8d3844a40df2d5980b3b (diff)
downloadlua-github-5.0.1.tar.gz
Lua 5.0.15.0.1
Diffstat (limited to 'src/lib/lbaselib.c')
-rw-r--r--src/lib/lbaselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/lbaselib.c b/src/lib/lbaselib.c
index 7381cf33..45bc7cfe 100644
--- a/src/lib/lbaselib.c
+++ b/src/lib/lbaselib.c
@@ -1,5 +1,5 @@
/*
-** $Id: lbaselib.c,v 1.130 2003/04/03 13:35:34 roberto Exp $
+** $Id: lbaselib.c,v 1.130a 2003/04/03 13:35:34 roberto Exp $
** Basic library
** See Copyright Notice in lua.h
*/
@@ -324,7 +324,7 @@ static int luaB_xpcall (lua_State *L) {
static int luaB_tostring (lua_State *L) {
- char buff[64];
+ char buff[128];
luaL_checkany(L, 1);
if (luaL_callmeta(L, 1, "__tostring")) /* is there a metafield? */
return 1; /* use its value */