Merge branch 'master' into v2.1

This commit is contained in:
Mike Pall
2016-07-17 14:38:26 +02:00
7 changed files with 13 additions and 13 deletions

View File

@@ -120,7 +120,7 @@ end
-- Show top N list.
local function prof_top(count1, count2, samples, indent)
local t, n = {}, 0
for k, v in pairs(count1) do
for k in pairs(count1) do
n = n + 1
t[n] = k
end