chg: textual

This commit is contained in:
iceman1001 2018-03-18 21:49:48 +01:00
parent 52a0acd7f1
commit e182d12ba8

View file

@ -588,7 +588,8 @@ int CmdTraceLoad(const char *Cmd) {
fclose(f); fclose(f);
return 1; return 1;
} }
fclose(f); fclose(f);
PrintAndLogEx(SUCCESS, "Recorded Activity (TraceLen = %d bytes) loaded from file %s", traceLen, filename);
return 0; return 0;
} }
@ -619,7 +620,7 @@ int CmdTraceSave(const char *Cmd) {
fwrite(buf, 1, 2, f); fwrite(buf, 1, 2, f);
fwrite(trace, 1, traceLen, f); fwrite(trace, 1, traceLen, f);
fclose(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; return 0;
} }