mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-17 18:50:32 +08:00
Fix linter complaint.
This commit is contained in:
parent
42eafc5e93
commit
f511333b4d
1 changed files with 1 additions and 1 deletions
|
@ -1169,7 +1169,7 @@ static void print_blocks_15693(uint8_t *data, uint16_t bytes, int blocksize) {
|
|||
}
|
||||
PrintAndLogEx(NORMAL, "| ascii");
|
||||
print_hrule(blocksize);
|
||||
for (uint16_t i = 0; i < blocks; i++) {
|
||||
for (int i = 0; i < blocks; i++) {
|
||||
PrintAndLogEx(INFO, "%4d | %s ", i, sprint_hex_ascii(data + (i * blocksize), blocksize));
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue