mirror of https://github.com/rusefi/lua.git
detail
This commit is contained in:
parent
7a78495f31
commit
2fa476655f
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lbaselib.c,v 1.198 2007/06/21 13:48:04 roberto Exp roberto $
|
** $Id: lbaselib.c,v 1.199 2007/10/17 17:26:39 roberto Exp roberto $
|
||||||
** Basic library
|
** Basic library
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -209,7 +209,7 @@ static int luaB_collectgarbage (lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
lua_pushnumber(L, res);
|
lua_pushinteger(L, res);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue