mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
textual
This commit is contained in:
parent
b73146533a
commit
b52a4a53b0
1 changed files with 2 additions and 2 deletions
|
@ -115,10 +115,10 @@ 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))
|
||||
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"
|
||||
return m[value] or 'no tag-info available'
|
||||
end,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue