janitor work on casts

This commit is contained in:
Roberto Ierusalimschy
2018-01-28 13:13:26 -02:00
parent 89110986d7
commit e2b15aa21d
18 changed files with 83 additions and 76 deletions

4
lgc.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lgc.c,v 2.243 2017/12/20 14:58:05 roberto Exp roberto $
** $Id: lgc.c,v 2.244 2017/12/28 15:42:57 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -107,7 +107,7 @@ static lu_mem atomic (lua_State *L);
/*
** one after last element in a hash array
*/
#define gnodelast(h) gnode(h, cast(size_t, sizenode(h)))
#define gnodelast(h) gnode(h, cast_sizet(sizenode(h)))
/*