lua-users home
lua-l archive

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


> Probably, because in lobject.c,
> --
> int luaO_int2fb (lu_int32 x) {
> --
> should be:
> --
> int luaO_int2fb (unsigned int x) {
> --
> so that it matches the declaration in lobject.h.

Sure. Does Lua compile OK after that correction?



> I still wonder about the signed/unsigned asymmetry, though.

What "asymmetry"? Do you mean the parameter being unsigned?

-- Roberto