nfc-mfclassic: fix reporting of processed blocks number
This commit is contained in:
parent
dd209460b1
commit
bb7b05681e
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ print_success_or_failure(bool bFailure, uint32_t *uiBlockCounter)
|
|||
{
|
||||
printf("%c", (bFailure) ? 'x' : '.');
|
||||
if (uiBlockCounter && !bFailure)
|
||||
*uiBlockCounter += (*uiBlockCounter < 128) ? 4 : 16;
|
||||
*uiBlockCounter += 1;
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
Loading…
Reference in a new issue