mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Mismatched format string specifier (need to deref size pointer)
This commit is contained in:
parent
f0bdcf3838
commit
4d67f56656
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ static int ask_em410x_binary_decode(bool verbose, uint32_t *hi, uint64_t *lo, ui
|
||||||
else if (ans == -4)
|
else if (ans == -4)
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x preamble not found");
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x preamble not found");
|
||||||
else if (ans == -5)
|
else if (ans == -5)
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x Size not correct: %zu", size);
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x Size not correct: %zu", *size);
|
||||||
else if (ans == -6)
|
else if (ans == -6)
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x parity failed");
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Em410x parity failed");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue