lua

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

commit e907c711c04b3e09164e7654623e1f48a689f5cc
parent 5a8bb00df443dfdb5708689f32c64e90f2557bf8
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri,  5 Mar 1999 10:15:28 -0300

"feof" may be a macro.

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

diff --git a/lzio.c b/lzio.c @@ -1,5 +1,5 @@ /* -** $Id: lzio.c,v 1.5 1999/02/25 19:13:56 roberto Exp roberto $ +** $Id: lzio.c,v 1.6 1999/03/04 14:49:18 roberto Exp roberto $ ** a generic input stream interface ** See Copyright Notice in lua.h */ @@ -43,7 +43,7 @@ ZIO* zsopen (ZIO* z, char* s, char *name) static int zffilbuf (ZIO* z) { int n; - if (feof(z->u)) return EOZ; + if (feof((FILE *)z->u)) return EOZ; n=fread(z->buffer,1,ZBSIZE,z->u); if (n==0) return EOZ; z->n=n-1;