[luacheck] fix (W213) unused loop variable v

This commit is contained in:
Francois Perrad 2016-07-16 15:55:12 +02:00
parent 6c0ebfa995
commit 520d138a78

View File

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