lua

A copy of the Lua development repository
Log | Files | Refs | README

commit db5ac2fa0df1e0d6f7a4a1e5d6e0b5e4ac4456c0
parent 1735c05ac75797976e98720cd72be318b91b4aa3
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 21 Nov 2014 10:17:33 -0200

detail (buffer in 'LoadF' is related to files)

Diffstat:
Mlauxlib.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lauxlib.c b/lauxlib.c @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.c,v 1.273 2014/11/02 19:19:04 roberto Exp roberto $ +** $Id: lauxlib.c,v 1.274 2014/11/12 13:32:27 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -566,7 +566,7 @@ LUALIB_API void luaL_unref (lua_State *L, int t, int ref) { typedef struct LoadF { int n; /* number of pre-read characters */ FILE *f; /* file being read */ - char buff[LUAL_BUFFERSIZE]; /* area for reading file */ + char buff[BUFSIZ]; /* area for reading file */ } LoadF;