mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 21:22:19 +08:00
chg: textual
This commit is contained in:
parent
52a0acd7f1
commit
e182d12ba8
1 changed files with 3 additions and 2 deletions
|
@ -588,7 +588,8 @@ int CmdTraceLoad(const char *Cmd) {
|
|||
fclose(f);
|
||||
return 1;
|
||||
}
|
||||
fclose(f);
|
||||
fclose(f);
|
||||
PrintAndLogEx(SUCCESS, "Recorded Activity (TraceLen = %d bytes) loaded from file %s", traceLen, filename);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -619,7 +620,7 @@ int CmdTraceSave(const char *Cmd) {
|
|||
fwrite(buf, 1, 2, f);
|
||||
fwrite(trace, 1, traceLen, f);
|
||||
fclose(f);
|
||||
PrintAndLogEx(SUCCESS, "Recorded Activity (TraceLen = %d bytes) written to file %s", traceLen, filename);
|
||||
PrintAndLogEx(SUCCESS, "Recorded Activity (TraceLen = %d bytes) written to file %s", traceLen, filename);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue