aboutsummaryrefslogtreecommitdiffstats
path: root/util/ztact.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-04-03 23:09:59 +0100
committerMatthew Wild <mwild1@gmail.com>2010-04-03 23:09:59 +0100
commit474f0d46466077959d3cff8ed4f51bebdda835db (patch)
tree266e3395805b6fcea3d7a01dcda27037d2f09fb9 /util/ztact.lua
parentaf3bc714626c4e7b5299ef675bb244e963c1cfaa (diff)
parent89e9f18d2ac62feb42a56a87ef0836a886da5d76 (diff)
downloadprosody-474f0d46466077959d3cff8ed4f51bebdda835db.tar.gz
prosody-474f0d46466077959d3cff8ed4f51bebdda835db.zip
Merge 0.7->trunk
Diffstat (limited to 'util/ztact.lua')
-rw-r--r--util/ztact.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/ztact.lua b/util/ztact.lua
index 35902ba1..2507bf8e 100644
--- a/util/ztact.lua
+++ b/util/ztact.lua
@@ -114,7 +114,7 @@ function tohex (s) -- - - - - - - - - - - - - - - - - - - - - - - - - tohex
function tostring_r (d, indent, tab0) -- - - - - - - - - - - - - tostring_r
- tab1 = tab0 or {}
+ local tab1 = tab0 or {}
local rep = string.rep (' ', indent or 0)
if type (d) == 'table' then
for k,v in pairs (d) do
@@ -210,7 +210,7 @@ function enqueue (queue, element) -- - - - - - - - - - - - - - - - - enqueue
local function test_queue ()
- t = {}
+ local t = {}
enqueue (t, 1)
enqueue (t, 2)
enqueue (t, 3)