mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -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);
|
fclose(f);
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
printf(".");
|
printf("."); fflush(stdout);
|
||||||
blockNum++;
|
blockNum++;
|
||||||
|
|
||||||
if (blockNum >= numBlocks) break;
|
if (blockNum >= numBlocks) break;
|
||||||
|
@ -1989,7 +1989,7 @@ 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");
|
fprintf(f,"\n");
|
||||||
printf(".");
|
printf("."); fflush(stdout);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
fclose(f);
|
fclose(f);
|
||||||
|
@ -2169,7 +2169,7 @@ int CmdHF14AMfCLoad(const char *Cmd) {
|
||||||
PrintAndLog("Cant set magic card block: %d", blockNum);
|
PrintAndLog("Cant set magic card block: %d", blockNum);
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
printf(".");
|
printf("."); fflush(stdout);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -2402,7 +2402,7 @@ int CmdHF14AMfCSave(const char *Cmd) {
|
||||||
PrintAndLog("Cant set emul block: %d", i);
|
PrintAndLog("Cant set emul block: %d", i);
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
printf(".");
|
printf("."); fflush(stdout);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -2438,7 +2438,7 @@ int CmdHF14AMfCSave(const char *Cmd) {
|
||||||
|
|
||||||
// bin
|
// bin
|
||||||
fwrite(buf, 1, sizeof(buf), fbin);
|
fwrite(buf, 1, sizeof(buf), fbin);
|
||||||
printf(".");
|
printf("."); fflush(stdout);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
fflush(feml); fflush(fbin);
|
fflush(feml); fflush(fbin);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue