summaryrefslogtreecommitdiffhomepage
path: root/libs/core
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-06-06 15:50:21 +0000
committerSteven Barth <steven@midlink.org>2008-06-06 15:50:21 +0000
commit932280107232706c4605e475a6d969f0adf2e22d (patch)
treeffc20d5818255da0cb9a1d3b7453b747702beacb /libs/core
parentdd9606825da5d73883b8313f5af905ea1b2a4d7d (diff)
* Separated OLSR pages into separate application pack
* Minor bugfixes and enhancements
Diffstat (limited to 'libs/core')
-rw-r--r--libs/core/luasrc/util.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua
index 074b43519a..343c627259 100644
--- a/libs/core/luasrc/util.lua
+++ b/libs/core/luasrc/util.lua
@@ -107,7 +107,7 @@ end
function dumptable(t, i)
i = i or 0
for k,v in pairs(t) do
- print(string.rep("\t", i) .. k, v)
+ print(string.rep("\t", i) .. tostring(k), tostring(v))
if type(v) == "table" then
dumptable(v, i+1)
end