mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
lua: more fix mix of spaces & tabs
This commit is contained in:
parent
05ff45e550
commit
2d1a077ae4
14 changed files with 1423 additions and 1423 deletions
|
@ -109,16 +109,16 @@ m[0x6B]='ISSM France'
|
|||
m[0x6C]='Wisesec Ltd Israel'
|
||||
m[0x7C]='DB HiTek Co Ltd Korea'
|
||||
m[0x7D]='SATO Vicinity Australia'
|
||||
m[0x7E]='Holtek Taiwan'
|
||||
m[0x7E]='Holtek Taiwan'
|
||||
|
||||
return {
|
||||
lookupManufacturer = function (value)
|
||||
if type(value) == 'string' then
|
||||
local v = tonumber(value, 16)
|
||||
print(string.format("WARNING: lookupManufacturer expects numeric value, converted %s into %x", value,v))
|
||||
value = v
|
||||
end
|
||||
lookupManufacturer = function (value)
|
||||
if type(value) == 'string' then
|
||||
local v = tonumber(value, 16)
|
||||
print(string.format("WARNING: lookupManufacturer expects numeric value, converted %s into %x", value,v))
|
||||
value = v
|
||||
end
|
||||
|
||||
return m[value] or "no tag-info available"
|
||||
end,
|
||||
return m[value] or "no tag-info available"
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue