aboutsummaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lundump.c b/lundump.c
index 4906a8db..6b2bb759 100644
--- a/lundump.c
+++ b/lundump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.c,v 1.43 2001/07/24 21:57:19 roberto Exp $ 2** $Id: lundump.c,v 1.44 2001/11/28 20:13:13 roberto Exp roberto $
3** load pre-compiled Lua chunks 3** load pre-compiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -133,7 +133,6 @@ static void LoadLines (lua_State* L, Proto* f, ZIO* Z, int swap)
133 int n; 133 int n;
134 n=LoadInt(L,Z,swap); 134 n=LoadInt(L,Z,swap);
135 f->lineinfo=luaM_newvector(L,n,int); 135 f->lineinfo=luaM_newvector(L,n,int);
136 f->sizelineinfo=n;
137 LoadVector(L,f->lineinfo,n,sizeof(*f->lineinfo),Z,swap); 136 LoadVector(L,f->lineinfo,n,sizeof(*f->lineinfo),Z,swap);
138} 137}
139 138