mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
fix: 'hf mf esave' - no extra newline in the end of the file
This commit is contained in:
parent
e119db8683
commit
4f1e2f80c5
1 changed files with 3 additions and 1 deletions
|
@ -2500,7 +2500,9 @@ int CmdHF14AMfESave(const char *Cmd) {
|
||||||
}
|
}
|
||||||
for (j = 0; j < 16; j++)
|
for (j = 0; j < 16; j++)
|
||||||
fprintf(f, "%02X", buf[j]);
|
fprintf(f, "%02X", buf[j]);
|
||||||
fprintf(f,"\n");
|
|
||||||
|
if (i != numBlocks -1)
|
||||||
|
fprintf(f, "\n");
|
||||||
printf("."); fflush(stdout);
|
printf("."); fflush(stdout);
|
||||||
}
|
}
|
||||||
PrintAndLogEx(NORMAL, "\n");
|
PrintAndLogEx(NORMAL, "\n");
|
||||||
|
|
Loading…
Reference in a new issue