lua

A copy of the Lua development repository
Log | Files | Refs | README

commit cbfc581990db2e20ee06670dbf84f28bcfe1dc42
parent d3651c1d88b65f3c9947d1f4f443d00f5340b28b
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri,  8 Feb 2002 20:41:28 -0200

details.

Diffstat:
Mltests.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ltests.c b/ltests.c @@ -387,7 +387,7 @@ static int doonnewstack (lua_State *L) { static int s2d (lua_State *L) { - lua_pushnumber(L, *cast(double *, luaL_check_string(L, 1))); + lua_pushnumber(L, *cast(const double *, luaL_check_string(L, 1))); return 1; }