aboutsummaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-17 16:49:15 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-17 16:49:15 -0300
commit67578ec51f1a3ec2c967f15d370067caf9e0b87b (patch)
treed77b292ddec33d7e6987bae808fa1db250ebd830 /lzio.c
parentc2bb9abceceef125554595e23b7cc18ad3555c7c (diff)
downloadlua-67578ec51f1a3ec2c967f15d370067caf9e0b87b.tar.gz
lua-67578ec51f1a3ec2c967f15d370067caf9e0b87b.tar.bz2
lua-67578ec51f1a3ec2c967f15d370067caf9e0b87b.zip
several small details
Diffstat (limited to 'lzio.c')
-rw-r--r--lzio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lzio.c b/lzio.c
index 0ead005a..176954e3 100644
--- a/lzio.c
+++ b/lzio.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.c,v 1.28 2003/11/18 10:44:53 roberto Exp roberto $ 2** $Id: lzio.c,v 1.29 2004/04/30 20:13:38 roberto Exp roberto $
3** a generic input stream interface 3** a generic input stream interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -43,7 +43,7 @@ int luaZ_lookahead (ZIO *z) {
43} 43}
44 44
45 45
46void luaZ_init (lua_State *L, ZIO *z, lua_Chunkreader reader, void *data) { 46void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
47 z->L = L; 47 z->L = L;
48 z->reader = reader; 48 z->reader = reader;
49 z->data = data; 49 z->data = data;