aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 547eeefd..9201aac4 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.161 2012/05/21 13:18:10 roberto Exp roberto $ 2** $Id: lapi.c,v 2.162 2012/05/22 17:50:39 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -1049,7 +1049,7 @@ LUA_API int lua_gc (lua_State *L, int what, int data) {
1049 luaC_forcestep(L); /* do a single step */ 1049 luaC_forcestep(L); /* do a single step */
1050 } 1050 }
1051 else { 1051 else {
1052 lu_mem debt = cast(lu_mem, data) * 1024; /* count in Kbytes */ 1052 lu_mem debt = cast(lu_mem, data) * 1024 - GCSTEPSIZE;
1053 if (g->gcrunning) 1053 if (g->gcrunning)
1054 debt += g->GCdebt; /* include current debt */ 1054 debt += g->GCdebt; /* include current debt */
1055 luaE_setdebt(g, debt); 1055 luaE_setdebt(g, debt);