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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user