mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-24 08:05:13 +08:00
Fixes after pull
This commit is contained in:
parent
0ff31a9fa8
commit
5c4148ec15
1 changed files with 2 additions and 2 deletions
|
@ -1916,12 +1916,12 @@ static int CmdHF14ADesClearRecordFile(const char *Cmd) {
|
|||
arg_param_end
|
||||
};
|
||||
CLIExecWithReturn(Cmd, argtable, false);
|
||||
uint8_t fileno[] = {0};
|
||||
uint8_t fileno;
|
||||
int aidlength = 0;
|
||||
uint8_t aid[3] = {0};
|
||||
CLIGetHexWithReturn(1, aid, &aidlength);
|
||||
int filenolen = 0;
|
||||
CLIGetHexWithReturn(2, fileno, &filenolen);
|
||||
CLIGetHexWithReturn(2, &fileno, &filenolen);
|
||||
int fidlength = 0;
|
||||
uint8_t fid[2] = {0};
|
||||
CLIParamHexToBuf(arg_get_str(3), fid, 2, &fidlength);
|
||||
|
|
Loading…
Reference in a new issue