diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.47 2008/06/26 19:42:45 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.48 2009/02/17 19:47:58 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -601,7 +601,7 @@ static Udata *udata2finalize (global_State *g) { | |||
601 | 601 | ||
602 | static void dothecall (lua_State *L, void *ud) { | 602 | static void dothecall (lua_State *L, void *ud) { |
603 | UNUSED(ud); | 603 | UNUSED(ud); |
604 | luaD_call(L, L->top - 2, 0); | 604 | luaD_call(L, L->top - 2, 0, 0); |
605 | } | 605 | } |
606 | 606 | ||
607 | 607 | ||