From ebf646efb5d5c66939196c187a339fd6074d33f8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 14 Oct 2005 13:24:11 -0300 Subject: detail --- liolib.c | 4 ++-- 1 file 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); } -- cgit v1.2.3-55-g6feb