diff options
-rw-r--r-- | src/jit/dump.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 9d8330e1..9a722f73 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -331,7 +331,7 @@ local function formatk(tr, idx) | |||
331 | s = format("userdata:%p", k) | 331 | s = format("userdata:%p", k) |
332 | else | 332 | else |
333 | s = format("[%p]", k) | 333 | s = format("[%p]", k) |
334 | if s == "[0x00000000]" then s = "NULL" end | 334 | if s == "[NULL]" then s = "NULL" end |
335 | end | 335 | end |
336 | elseif t == 21 then -- int64_t | 336 | elseif t == 21 then -- int64_t |
337 | s = sub(tostring(k), 1, -3) | 337 | s = sub(tostring(k), 1, -3) |