mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Make style.
This commit is contained in:
parent
b422b79679
commit
42fd13985f
4 changed files with 13 additions and 13 deletions
|
@ -795,7 +795,7 @@ static int CmdHFFelicaSniff(const char *Cmd) {
|
|||
paramCount++;
|
||||
if (param_getlength(Cmd, paramCount) < 5) {
|
||||
samples2skip = param_get32ex(Cmd, paramCount++, 0, 10);
|
||||
}else{
|
||||
} else {
|
||||
PrintAndLogEx(ERR, "Invalid samples number!");
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
|
@ -805,7 +805,7 @@ static int CmdHFFelicaSniff(const char *Cmd) {
|
|||
paramCount++;
|
||||
if (param_getlength(Cmd, paramCount) < 5) {
|
||||
triggers2skip = param_get32ex(Cmd, paramCount++, 0, 10);
|
||||
}else{
|
||||
} else {
|
||||
PrintAndLogEx(ERR, "Invalid triggers number!");
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
|
@ -818,11 +818,11 @@ static int CmdHFFelicaSniff(const char *Cmd) {
|
|||
}
|
||||
i++;
|
||||
}
|
||||
if(samples2skip <= 0){
|
||||
if (samples2skip <= 0) {
|
||||
samples2skip = 10;
|
||||
PrintAndLogEx(INFO, "Set default samples2skip: %i", samples2skip);
|
||||
}
|
||||
if(triggers2skip <= 0){
|
||||
if (triggers2skip <= 0) {
|
||||
triggers2skip = 5000;
|
||||
PrintAndLogEx(INFO, "Set default triggers2skip: %i", triggers2skip);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue