mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
codeQL fix
This commit is contained in:
parent
a7d099bc2b
commit
1953cd953b
1 changed files with 2 additions and 2 deletions
|
@ -2943,11 +2943,11 @@ static int CmdDiff(const char *Cmd) {
|
|||
}
|
||||
|
||||
if (splenA > 32) {
|
||||
PrintAndLogEx(WARNING, "SPIFFS filname A length is large than 32 bytes, got %zu", splenA);
|
||||
PrintAndLogEx(WARNING, "SPIFFS filname A length is large than 32 bytes, got %d", splenA);
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
if (splenB > 32) {
|
||||
PrintAndLogEx(WARNING, "SPIFFS filname B length is large than 32 bytes, got %zu", splenB);
|
||||
PrintAndLogEx(WARNING, "SPIFFS filname B length is large than 32 bytes, got %d", splenB);
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue