gzip.lua: fix variable scope
This commit is contained in:
parent
f075d11b0d
commit
59f1a85d1b
|
@ -121,7 +121,7 @@ local decode = function (c)
|
|||
return "unknown: %d", u8
|
||||
end)
|
||||
c:u8 ("OS: %s", function (u8)
|
||||
os = os_table[u8]
|
||||
local os = os_table[u8]
|
||||
if os then return os end
|
||||
return "unknown: %d", u8
|
||||
end)
|
||||
|
|
Loading…
Reference in New Issue