mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07: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) {
|
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;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
if (splenB > 32) {
|
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;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue