util.iterators: Small fix for variable scoping issue

This commit is contained in:
Matthew Wild 2013-05-17 08:42:21 +01:00
parent d7f5ff243e
commit f74284d013

View file

@ -75,7 +75,7 @@ function it.count(f, s, var)
local x = 0;
while true do
local var = f(s, var);
var = f(s, var);
if var == nil then break; end
x = x + 1;
end