aboutsummaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index db5d1ebb..58039611 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.51 2009/06/01 19:09:26 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.52 2009/06/10 16:57:53 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -191,7 +191,7 @@ static void collectvalidlines (lua_State *L, Closure *f) {
191 sethvalue(L, L->top, t); 191 sethvalue(L, L->top, t);
192 incr_top(L); 192 incr_top(L);
193 for (i=0; i<f->l.p->sizelineinfo; i++) 193 for (i=0; i<f->l.p->sizelineinfo; i++)
194 setbvalue(luaH_setnum(L, t, lineinfo[i]), 1); 194 setbvalue(luaH_setint(L, t, lineinfo[i]), 1);
195 } 195 }
196} 196}
197 197