From b145c49375ff8b2847be17d6956c64a6d48a371d Mon Sep 17 00:00:00 2001 From: Shane Liesegang Date: Sat, 27 Jul 2019 20:47:18 +0200 Subject: [PATCH] actually seeing both is useful --- Lib/lua/luarun.swg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lua/luarun.swg b/Lib/lua/luarun.swg index f39a7009d..a6959a65f 100644 --- a/Lib/lua/luarun.swg +++ b/Lib/lua/luarun.swg @@ -1049,7 +1049,7 @@ SWIGINTERN int SWIG_Lua_class_tostring(lua_State *L) lua_getfield(L, -1, ".type"); className = lua_tostring(L, -1); - lua_pushfstring(L, "<%s userdata: %p>", className, userData->ptr); + lua_pushfstring(L, "<%s userdata: %p::%p>", className, userdata, userData->ptr); return 1; }