From 52cb90ec759e3569e1edf1f73549d5a07043727d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 24 Apr 2013 16:41:48 -0300 Subject: detail --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltests.c b/ltests.c index 70409f2e..241c1366 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.134 2012/10/03 12:36:46 roberto Exp roberto $ +** $Id: ltests.c,v 2.135 2013/03/16 21:10:18 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -810,7 +810,7 @@ static int newuserdata (lua_State *L) { static int pushuserdata (lua_State *L) { - lua_pushlightuserdata(L, cast(void *, luaL_checkinteger(L, 1))); + lua_pushlightuserdata(L, cast(void *, luaL_checkint(L, 1))); return 1; } -- cgit v1.2.3-55-g6feb