util.throttle: Fix 'outstanding' return value

This commit is contained in:
Matthew Wild 2012-01-13 23:30:32 +00:00
parent 489b84390e
commit cb1415272f

View file

@ -34,7 +34,7 @@ function throttle:poll(cost, split)
if split then
self.balance = 0;
end
return false, balance, (cost-self.balance);
return false, balance, (cost-balance);
end
end