Fixed indentation in benchmark util script

pull/6/head
rxi 2015-08-14 20:00:26 +01:00
parent ced32bd221
commit d1ebba043c
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ function bench.run(name, count, func)
table.insert(res, (os.clock() - start_time))
end
-- Calculate average
local avg = 0
local avg = 0
for i, v in ipairs(res) do
avg = avg + v
end