diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-09-10 17:05:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-09-10 17:05:39 -0300 |
commit | 4901853c1163d0bba81ef1579835cb2b6560e245 (patch) | |
tree | bd2c0cbc6c70ae789c6b98d73581c65379493dbf /lbaselib.c | |
parent | a04e0ffdb9be42a77b5657f46cac8d7faa5a0f43 (diff) | |
download | lua-4901853c1163d0bba81ef1579835cb2b6560e245.tar.gz lua-4901853c1163d0bba81ef1579835cb2b6560e245.tar.bz2 lua-4901853c1163d0bba81ef1579835cb2b6560e245.zip |
Parameter for lua_gc/LUA_GCSTEP changed to 'size_t'
'size_t' is the common type for measuring memory. 'int' can be too
small for steps.
Diffstat (limited to 'lbaselib.c')
-rw-r--r-- | lbaselib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ static int luaB_collectgarbage (lua_State *L) { | |||
216 | } | 216 | } |
217 | case LUA_GCSTEP: { | 217 | case LUA_GCSTEP: { |
218 | lua_Integer n = luaL_optinteger(L, 2, 0); | 218 | lua_Integer n = luaL_optinteger(L, 2, 0); |
219 | int res = lua_gc(L, o, (int)n); | 219 | int res = lua_gc(L, o, cast_sizet(n)); |
220 | checkvalres(res); | 220 | checkvalres(res); |
221 | lua_pushboolean(L, res); | 221 | lua_pushboolean(L, res); |
222 | return 1; | 222 | return 1; |