mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 12:59:44 -07:00
fix recvLen variable name in hf_reader
This commit is contained in:
parent
3e50af4ee4
commit
4b12061bee
1 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,7 @@ local function read15693()
|
||||||
end
|
end
|
||||||
|
|
||||||
local count,cmd,recvLen,arg1,arg2 = bin.unpack('LLLL',result)
|
local count,cmd,recvLen,arg1,arg2 = bin.unpack('LLLL',result)
|
||||||
data = string.sub(result,recvlen)
|
data = string.sub(result,recvLen)
|
||||||
info, err = parse15693(data)
|
info, err = parse15693(data)
|
||||||
|
|
||||||
if err then
|
if err then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue