x86: fix lua address display

develop
lethosor 2016-08-05 17:50:49 -04:00
parent ddbb1b5bb8
commit dde6901534
1 changed files with 1 additions and 1 deletions

@ -996,7 +996,7 @@ static int meta_ptr_tostring(lua_State *state)
lua_getfield(state, UPVAL_METATABLE, "__metatable");
const char *cname = lua_tostring(state, -1);
lua_pushstring(state, stl_sprintf("<%s: 0x%llx>", cname, (uintptr_t)ptr).c_str());
lua_pushstring(state, stl_sprintf("<%s: %p>", cname, (void*)ptr).c_str());
return 1;
}