Skip to content

Commit

Permalink
Fix printf() mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygab committed Jan 15, 2025
1 parent 7082302 commit 740cfad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/cmdhf14a.c
Original file line number Diff line number Diff line change
Expand Up @@ -3260,7 +3260,7 @@ int CmdHF14ANdefRead(const char *Cmd) {
}

if (resplen != segment_size + 2) {
PrintAndLogEx(ERR, "reading NDEF file failed, expected %i bytes, got %i bytes.", segment_size, resplen - 2);
PrintAndLogEx(ERR, "reading NDEF file failed, expected %zu bytes, got %i bytes.", segment_size, resplen - 2);
DropField();
free(ndef_file);
return PM3_ESOFT;
Expand Down

0 comments on commit 740cfad

Please sign in to comment.