summaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index fb73899b..b87f7904 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 2.205 2015/04/02 21:10:21 roberto Exp roberto $ 2** $Id: ltests.c,v 2.206 2015/06/18 14:25:26 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -911,7 +911,7 @@ static int doremote (lua_State *L) {
911static int int2fb_aux (lua_State *L) { 911static int int2fb_aux (lua_State *L) {
912 int b = luaO_int2fb((unsigned int)luaL_checkinteger(L, 1)); 912 int b = luaO_int2fb((unsigned int)luaL_checkinteger(L, 1));
913 lua_pushinteger(L, b); 913 lua_pushinteger(L, b);
914 lua_pushinteger(L, luaO_fb2int(b)); 914 lua_pushinteger(L, (unsigned int)luaO_fb2int(b));
915 return 2; 915 return 2;
916} 916}
917 917