mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
fix eml file format
This commit is contained in:
parent
f7887fa82e
commit
a034948363
1 changed files with 2 additions and 1 deletions
|
@ -609,7 +609,8 @@ int saveTraceCard(void) {
|
|||
for (int i = 0; i < 64; i++) { // blocks
|
||||
for (int j = 0; j < 16; j++) // bytes
|
||||
fprintf(f, "%02x", *(traceCard + i * 16 + j));
|
||||
fprintf(f,"\n");
|
||||
if (i < 63)
|
||||
fprintf(f,"\n");
|
||||
}
|
||||
fclose(f);
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue