mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-16 10:03:04 -07:00
missing var
This commit is contained in:
parent
fccb398aea
commit
1a3aa7eb02
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ static int CmdHF15ELoad(const char *Cmd) {
|
||||||
|
|
||||||
int tosend = MIN(chuncksize, bytes_read);
|
int tosend = MIN(chuncksize, bytes_read);
|
||||||
if (hf15EmlSetMem(data + offset, tosend, offset) != PM3_SUCCESS) {
|
if (hf15EmlSetMem(data + offset, tosend, offset) != PM3_SUCCESS) {
|
||||||
PrintAndLogEx(FAILED, "Can't set emulator memory at offest: %zu / 0x%zx", offset);
|
PrintAndLogEx(FAILED, "Can't set emulator memory at offest: %zu / 0x%zx", offset, offset);
|
||||||
free(data);
|
free(data);
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue