mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-24 07:05:40 -07: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
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(Cmd, argtable, false);
|
CLIExecWithReturn(Cmd, argtable, false);
|
||||||
uint8_t fileno[] = {0};
|
uint8_t fileno;
|
||||||
int aidlength = 0;
|
int aidlength = 0;
|
||||||
uint8_t aid[3] = {0};
|
uint8_t aid[3] = {0};
|
||||||
CLIGetHexWithReturn(1, aid, &aidlength);
|
CLIGetHexWithReturn(1, aid, &aidlength);
|
||||||
int filenolen = 0;
|
int filenolen = 0;
|
||||||
CLIGetHexWithReturn(2, fileno, &filenolen);
|
CLIGetHexWithReturn(2, &fileno, &filenolen);
|
||||||
int fidlength = 0;
|
int fidlength = 0;
|
||||||
uint8_t fid[2] = {0};
|
uint8_t fid[2] = {0};
|
||||||
CLIParamHexToBuf(arg_get_str(3), fid, 2, &fidlength);
|
CLIParamHexToBuf(arg_get_str(3), fid, 2, &fidlength);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue