mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-15 04:27:46 +08:00
tweak messages
This commit is contained in:
parent
9b7bd49665
commit
4306f85343
1 changed files with 2 additions and 2 deletions
|
@ -1882,7 +1882,7 @@ int CmdHF14AMfUDump(const char *Cmd){
|
|||
}
|
||||
|
||||
if ((fout = fopen(filename,"wb")) == NULL) {
|
||||
PrintAndLogEx(NORMAL, "Could not create file name %s", filename);
|
||||
PrintAndLogEx(WARNING, "Could not create file name %s", filename);
|
||||
return 1;
|
||||
}
|
||||
fwrite( &dump_file_data, 1, pages*4 + DUMP_PREFIX_LENGTH, fout );
|
||||
|
@ -1986,7 +1986,7 @@ int CmdHF14AMfURestore(const char *Cmd){
|
|||
if (errors || cmdp == 0) return usage_hf_mfu_restore();
|
||||
|
||||
if ((f = fopen(filename,"rb")) == NULL) {
|
||||
PrintAndLogEx(NORMAL, "Could not find file %s", filename);
|
||||
PrintAndLogEx(WARNING, "Could not find file %s", filename);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue