From 64a4270a59165357e29dc8b69d9ffd92e1ce51ec Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Tue, 9 Sep 2008 15:39:38 +0000 Subject: [PATCH] Fixed uvl.errors --- libs/uvl/luasrc/uvl/errors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/uvl/luasrc/uvl/errors.lua b/libs/uvl/luasrc/uvl/errors.lua index bdd596ca82..242965ddc1 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 -- 2.30.2