Fixed indentation in benchmark util script

This commit is contained in:
rxi
2015-08-14 20:00:26 +01:00
parent ced32bd221
commit d1ebba043c

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