diff options
Diffstat (limited to 'src/jit/p.lua')
-rw-r--r-- | src/jit/p.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/p.lua b/src/jit/p.lua index 5323728b..09b3b9fe 100644 --- a/src/jit/p.lua +++ b/src/jit/p.lua | |||
@@ -120,7 +120,7 @@ end | |||
120 | -- Show top N list. | 120 | -- Show top N list. |
121 | local function prof_top(count1, count2, samples, indent) | 121 | local function prof_top(count1, count2, samples, indent) |
122 | local t, n = {}, 0 | 122 | local t, n = {}, 0 |
123 | for k, v in pairs(count1) do | 123 | for k in pairs(count1) do |
124 | n = n + 1 | 124 | n = n + 1 |
125 | t[n] = k | 125 | t[n] = k |
126 | end | 126 | end |