mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
fix: wrong paramname
This commit is contained in:
parent
214bb46e9c
commit
0263273ec3
2 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ copyright = ''
|
||||||
author = 'Iceman'
|
author = 'Iceman'
|
||||||
version = 'v1.0.2'
|
version = 'v1.0.2'
|
||||||
desc =[[
|
desc =[[
|
||||||
This script takes an dumpfile on EML (ASCII) format and converts it to the PM3 dumpbin file to be used with `hf mf restore`
|
This script takes an dumpfile in EML (ASCII) format and converts it to the PM3 dumpbin file to be used with `hf mf restore`
|
||||||
]]
|
]]
|
||||||
example =[[
|
example =[[
|
||||||
1. script run emul2dump
|
1. script run emul2dump
|
||||||
|
@ -25,7 +25,7 @@ arguments = [[
|
||||||
]]
|
]]
|
||||||
---
|
---
|
||||||
-- This is only meant to be used when errors occur
|
-- This is only meant to be used when errors occur
|
||||||
local function dbg(err)
|
local function dbg(args)
|
||||||
if not DEBUG then return end
|
if not DEBUG then return end
|
||||||
if type(args) == 'table' then
|
if type(args) == 'table' then
|
||||||
local i = 1
|
local i = 1
|
||||||
|
|
|
@ -19,7 +19,7 @@ arguments = [[
|
||||||
]]
|
]]
|
||||||
---
|
---
|
||||||
-- This is only meant to be used when errors occur
|
-- This is only meant to be used when errors occur
|
||||||
local function dbg(err)
|
local function dbg(args)
|
||||||
if not DEBUG then return end
|
if not DEBUG then return end
|
||||||
if type(args) == 'table' then
|
if type(args) == 'table' then
|
||||||
local i = 1
|
local i = 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue