util.iterators: it2table: Fix variable name

This commit is contained in:
Matthew Wild 2011-12-07 05:17:39 +00:00
parent f1f40bc3ca
commit 0356027c05

View file

@ -140,7 +140,7 @@ end
-- Treat the return of an iterator as key,value pairs,
-- and build a table
function it2table(f, s, var)
local t, var = {};
local t, var2 = {};
while true do
var, var2 = f(s, var);
if var == nil then break; end