mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
cppcheck fixes
This commit is contained in:
parent
0942ce7a68
commit
abacf673dc
1 changed files with 4 additions and 4 deletions
|
@ -1189,11 +1189,11 @@ static int CmdAnalyseUnits(const char *Cmd) {
|
|||
PrintAndLogEx(INFO, " 32 SSP = %u ETU (expect 1) " _GREEN_("ok"), SSP_TO_ETU(32));
|
||||
} else if (etu) {
|
||||
|
||||
PrintAndLogEx(INFO, " %d ETU = %u us ", ETU_TO_US(etu));
|
||||
PrintAndLogEx(INFO, " %d ETU = %u SSP ", ETU_TO_SSP(etu));
|
||||
PrintAndLogEx(INFO, " %d ETU = %u us ", ETU_TO_US(etu), 0);
|
||||
PrintAndLogEx(INFO, " %d ETU = %u SSP ", ETU_TO_SSP(etu), 0);
|
||||
} else if (us) {
|
||||
PrintAndLogEx(INFO, " %d us = %u ETU ", US_TO_ETU(us));
|
||||
PrintAndLogEx(INFO, " %d us = %u SSP ", US_TO_SSP(us));
|
||||
PrintAndLogEx(INFO, " %d us = %u ETU ", US_TO_ETU(us), 0);
|
||||
PrintAndLogEx(INFO, " %d us = %u SSP ", US_TO_SSP(us), 0);
|
||||
}
|
||||
|
||||
return PM3_SUCCESS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue