summaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-10-14 13:24:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-10-14 13:24:11 -0300
commitebf646efb5d5c66939196c187a339fd6074d33f8 (patch)
tree6cac355a948441076065fdca86641fda6486f4b7 /liolib.c
parentb3f81f1d1d3d7c6fd5787cb292a9a6bd3f0a361a (diff)
downloadlua-github-ebf646efb5d5c66939196c187a339fd6074d33f8.tar.gz
detail
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liolib.c b/liolib.c
index e8328fdc..e723b656 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
/*
-** $Id: liolib.c,v 2.66 2005/08/17 19:05:04 roberto Exp roberto $
+** $Id: liolib.c,v 2.67 2005/08/26 17:36:32 roberto Exp roberto $
** Standard I/O (and system) library
** See Copyright Notice in lua.h
*/
@@ -440,7 +440,7 @@ static int f_setvbuf (lua_State *L) {
static const char *const modenames[] = {"no", "full", "line", NULL};
FILE *f = tofile(L);
int op = luaL_checkoption(L, 2, NULL, modenames);
- lua_Integer sz = luaL_optinteger(L, 3, BUFSIZ);
+ lua_Integer sz = luaL_optinteger(L, 3, LUAL_BUFFERSIZE);
int res = setvbuf(f, NULL, mode[op], sz);
return pushresult(L, res == 0, NULL);
}