diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.2 1999/12/23 18:19:57 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.3 1999/12/27 17:33:22 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 | */ |
@@ -30,8 +30,8 @@ void luaB_opentests (lua_State *L); | |||
30 | 30 | ||
31 | 31 | ||
32 | static void mem_query (lua_State *L) { | 32 | static void mem_query (lua_State *L) { |
33 | lua_pushnumber(L, totalmem); | 33 | lua_pushnumber(L, memdebug_total); |
34 | lua_pushnumber(L, numblocks); | 34 | lua_pushnumber(L, memdebug_numblocks); |
35 | } | 35 | } |
36 | 36 | ||
37 | 37 | ||