From 7377fbdebc1e53e4c1545b18054f6b2e5257f2f8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Nov 2011 17:30:16 -0200 Subject: function prototype did not match one in .h --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lobject.c b/lobject.c index d07f068b..86b3097e 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.53 2011/07/27 12:13:08 roberto Exp roberto $ +** $Id: lobject.c,v 2.54 2011/11/30 12:44:26 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -33,7 +33,7 @@ LUAI_DDEF const TValue luaO_nilobject_ = {NILCONSTANT}; ** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if ** eeeee != 0 and (xxx) otherwise. */ -int luaO_int2fb (lu_int32 x) { +int luaO_int2fb (unsigned int x) { int e = 0; /* exponent */ if (x < 8) return x; while (x >= 0x10) { -- cgit v1.2.3-55-g6feb