mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
hf epa: fix cast align warning
This commit is contained in:
parent
9847b77c83
commit
2c250d5d14
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ static int CmdHFEPAPACEReplay(const char *Cmd) {
|
||||||
while (Cmd[skip] != ' ' && Cmd[skip] != '\0') {
|
while (Cmd[skip] != ' ' && Cmd[skip] != '\0') {
|
||||||
// convert
|
// convert
|
||||||
scan_return = sscanf(Cmd + skip,
|
scan_return = sscanf(Cmd + skip,
|
||||||
"%2X%n",
|
"%2" SCNx8 "%n",
|
||||||
(unsigned int *)(apdus[i] + apdu_lengths[i]),
|
apdus[i] + apdu_lengths[i],
|
||||||
&skip_add
|
&skip_add
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue