Fixed uvl.errors

This commit is contained in:
Steven Barth 2008-09-09 15:39:38 +00:00
parent 1bfd6b667b
commit 64a4270a59

View file

@ -121,7 +121,7 @@ function error.child(self, err)
if not self.childs then
self.childs = { err }
else
table.insert( self.childs, err )
self.childs[#self.childs+1] = err
end
return self
end