1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-04 12:36:34 +00:00

Remove an unused variable

This commit is contained in:
nnposter
2026-02-03 17:08:31 +00:00
parent ebb01f3a5f
commit cd77d5f8dd

View File

@@ -80,10 +80,10 @@ end
-- @return A table of keys
function keys(t)
local ret = {}
local k, v = next(t)
local k = next(t)
while k ~= nil do
ret[#ret+1] = k
k, v = next(t, k)
k = next(t, k)
end
return ret
end