mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
chg... and fflushing stdout...
This commit is contained in:
parent
0d3208eb95
commit
97452c056c
1 changed files with 5 additions and 5 deletions
|
@ -1905,7 +1905,7 @@ int CmdHF14AMfELoad(const char *Cmd) {
|
|||
fclose(f);
|
||||
return 3;
|
||||
}
|
||||
printf(".");
|
||||
printf("."); fflush(stdout);
|
||||
blockNum++;
|
||||
|
||||
if (blockNum >= numBlocks) break;
|
||||
|
@ -1989,7 +1989,7 @@ int CmdHF14AMfESave(const char *Cmd) {
|
|||
for (j = 0; j < 16; j++)
|
||||
fprintf(f, "%02X", buf[j]);
|
||||
fprintf(f,"\n");
|
||||
printf(".");
|
||||
printf("."); fflush(stdout);
|
||||
}
|
||||
printf("\n");
|
||||
fclose(f);
|
||||
|
@ -2169,7 +2169,7 @@ int CmdHF14AMfCLoad(const char *Cmd) {
|
|||
PrintAndLog("Cant set magic card block: %d", blockNum);
|
||||
return 3;
|
||||
}
|
||||
printf(".");
|
||||
printf("."); fflush(stdout);
|
||||
}
|
||||
printf("\n");
|
||||
return 0;
|
||||
|
@ -2402,7 +2402,7 @@ int CmdHF14AMfCSave(const char *Cmd) {
|
|||
PrintAndLog("Cant set emul block: %d", i);
|
||||
return 3;
|
||||
}
|
||||
printf(".");
|
||||
printf("."); fflush(stdout);
|
||||
}
|
||||
printf("\n");
|
||||
return 0;
|
||||
|
@ -2438,7 +2438,7 @@ int CmdHF14AMfCSave(const char *Cmd) {
|
|||
|
||||
// bin
|
||||
fwrite(buf, 1, sizeof(buf), fbin);
|
||||
printf(".");
|
||||
printf("."); fflush(stdout);
|
||||
}
|
||||
printf("\n");
|
||||
fflush(feml); fflush(fbin);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue