Avoid Microsoft warning

> warning C4334: '<<': result of 32-bit shift implicitly converted to
> 64 bits (was 64-bit shift intended?)
This commit is contained in:
Roberto Ierusalimschy 2024-09-19 19:09:35 -03:00
parent 9b72355f99
commit 8fac494509

View File

@ -402,7 +402,8 @@ int luaH_next (lua_State *L, Table *t, StkId key) {
static void freehash (lua_State *L, Table *t) {
if (!isdummy(t)) {
size_t bsize = sizenode(t) * sizeof(Node); /* 'node' size in bytes */
/* 'node' size in bytes */
size_t bsize = cast_sizet(sizenode(t)) * sizeof(Node);
char *arr = cast_charp(t->node);
if (haslastfree(t)) {
bsize += sizeof(Limbox);