[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (rc3) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 30 Nov 2011 16:40:28 -0200
> 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