mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix wrong return type
This commit is contained in:
parent
3a5c74d84c
commit
9d23550424
1 changed files with 1 additions and 1 deletions
|
@ -994,7 +994,7 @@ static bool HF14B_other_reader(bool verbose) {
|
|||
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, sizeof(iso14b_raw_cmd_t) + 4);
|
||||
if (packet == NULL) {
|
||||
PrintAndLogEx(FAILED, "failed to allocate memory");
|
||||
return PM3_EMALLOC;
|
||||
return false;
|
||||
}
|
||||
packet->flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_RAW | ISO14B_APPEND_CRC);
|
||||
packet->timeout = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue