diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.31 2005/03/22 16:04:29 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.32 2005/05/05 15:34:03 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 | */ |
@@ -240,8 +240,8 @@ static void traverseclosure (global_State *g, Closure *cl) { | |||
240 | 240 | ||
241 | 241 | ||
242 | static void checkstacksizes (lua_State *L, StkId max) { | 242 | static void checkstacksizes (lua_State *L, StkId max) { |
243 | int ci_used = L->ci - L->base_ci; /* number of `ci' in use */ | 243 | int ci_used = cast(int, L->ci - L->base_ci); /* number of `ci' in use */ |
244 | int s_used = max - L->stack; /* part of stack in use */ | 244 | int s_used = cast(int, max - L->stack); /* part of stack in use */ |
245 | if (L->size_ci > LUAI_MAXCALLS) /* handling overflow? */ | 245 | if (L->size_ci > LUAI_MAXCALLS) /* handling overflow? */ |
246 | return; /* do not touch the stacks */ | 246 | return; /* do not touch the stacks */ |
247 | if (4*ci_used < L->size_ci && 2*BASIC_CI_SIZE < L->size_ci) | 247 | if (4*ci_used < L->size_ci && 2*BASIC_CI_SIZE < L->size_ci) |