Skip to content

Commit

Permalink
Merge pull request #2721 from henrygab/codeQL_fixes2
Browse files Browse the repository at this point in the history
Fix printf() mismatch
  • Loading branch information
iceman1001 authored Jan 15, 2025
2 parents 7082302 + 740cfad commit b467eb5
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 b467eb5

Please sign in to comment.