lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> In `lua.h` `lua_tounsignedx` is defined as
> 
> #define lua_tounsignedx(L,i,is) ((lua_Integer)lua_tointegerx(L,i,is))
> 
> I think that should be
> 
> #define lua_tounsignedx(L,i,is) ((lua_Unsigned)lua_tointegerx(L,i,is))

Sure!! Many thanks,

-- Roberto