diff options
author | Steven Barth <steven@midlink.org> | 2008-09-09 15:39:38 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-09 15:39:38 +0000 |
commit | 64a4270a59165357e29dc8b69d9ffd92e1ce51ec (patch) | |
tree | ba06e25dfb29e33242b726589de3a73d48d712ec /libs | |
parent | 1bfd6b667b1169715fb4e1003e488c72b25080d5 (diff) |
Fixed uvl.errors
Diffstat (limited to 'libs')
-rw-r--r-- | libs/uvl/luasrc/uvl/errors.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/uvl/luasrc/uvl/errors.lua b/libs/uvl/luasrc/uvl/errors.lua index bdd596ca8..242965ddc 100644 --- a/libs/uvl/luasrc/uvl/errors.lua +++ b/libs/uvl/luasrc/uvl/errors.lua @@ -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 |