From 2de3361c6c795ec98274f4d8ea3e9d5280e06074 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Wed, 1 Jul 2015 14:47:12 -0300 Subject: detail --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index fb73899b..b87f7904 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.205 2015/04/02 21:10:21 roberto Exp roberto $ +** $Id: ltests.c,v 2.206 2015/06/18 14:25:26 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -911,7 +911,7 @@ static int doremote (lua_State *L) { static int int2fb_aux (lua_State *L) { int b = luaO_int2fb((unsigned int)luaL_checkinteger(L, 1)); lua_pushinteger(L, b); - lua_pushinteger(L, luaO_fb2int(b)); + lua_pushinteger(L, (unsigned int)luaO_fb2int(b)); return 2; } -- cgit v1.2.3-55-g6feb