From 0b3d380f9fb79cc5a35ce34eecf56aea0d7fb9f9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 5 Aug 2002 15:45:02 -0300 Subject: internal names --- lundump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index 7ea55ea4..b1dd78ab 100644 --- a/lundump.c +++ b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 1.41 2002/06/06 13:22:56 lhf Exp lhf $ +** $Id: lundump.c,v 1.50 2002/06/17 13:51:01 roberto Exp roberto $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -41,7 +41,7 @@ static int ezgetc (lua_State* L, ZIO* Z) static void ezread (lua_State* L, ZIO* Z, void* b, int n) { - int r=zread(Z,b,n); + int r=luaZ_read(Z,b,n); if (r!=0) unexpectedEOZ(L,Z); } -- cgit v1.2.3-55-g6feb