mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Disable trace on nil table in table.len
This commit is contained in:
parent
5b15335ce3
commit
6b6e7dea54
1 changed files with 2 additions and 2 deletions
|
|
@ -113,8 +113,8 @@ function table.len(tbl)
|
|||
local count = 0
|
||||
|
||||
if tbl == nil then
|
||||
io.write("ERROR: table expected, got nil\n")
|
||||
io.write(debug.traceback().."\n")
|
||||
--io.write("ERROR: table expected, got nil\n")
|
||||
--io.write(debug.traceback().."\n")
|
||||
return 0
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue