mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07: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)
|
lookupManufacturer = function (value)
|
||||||
if type(value) == 'string' then
|
if type(value) == 'string' then
|
||||||
local v = tonumber(value, 16)
|
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
|
value = v
|
||||||
end
|
end
|
||||||
|
|
||||||
return m[value] or "no tag-info available"
|
return m[value] or 'no tag-info available'
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue