diff options
Diffstat (limited to 'src')
-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 93745947..ec5f8276 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -324,7 +324,7 @@ local function formatk(tr, idx) | |||
324 | s = format("userdata:%p", k) | 324 | s = format("userdata:%p", k) |
325 | else | 325 | else |
326 | s = format("[%p]", k) | 326 | s = format("[%p]", k) |
327 | if s == "[0x00000000]" then s = "NULL" end | 327 | if s == "[NULL]" then s = "NULL" end |
328 | end | 328 | end |
329 | elseif t == 21 then -- int64_t | 329 | elseif t == 21 then -- int64_t |
330 | s = sub(tostring(k), 1, -3) | 330 | s = sub(tostring(k), 1, -3) |