diff --git a/client/src/cmdhw.c b/client/src/cmdhw.c index e9f05ce30..f26f1cb6d 100644 --- a/client/src/cmdhw.c +++ b/client/src/cmdhw.c @@ -682,7 +682,6 @@ static int CmdReadmem(const char *Cmd) { } if (save_to_file) { - PrintAndLogEx(INFO, "saving to "_YELLOW_("%s"), filename); saveFile(filename, ".bin", buffer, len); } else { PrintAndLogEx(INFO, "---- " _CYAN_("processor%s memory") " ----", flash_str); diff --git a/client/src/proxmark3.c b/client/src/proxmark3.c index 024258819..e267faa9d 100644 --- a/client/src/proxmark3.c +++ b/client/src/proxmark3.c @@ -683,7 +683,6 @@ static int dumpmem_to_file(const char *filename, uint32_t addr, uint32_t len, bo } if (res == PM3_SUCCESS) { - PrintAndLogEx(INFO, "saving to "_YELLOW_("%s"), filename); if (saveFile(filename, ".bin", buffer, read) != 0) { PrintAndLogEx(ERR, "error writing to file "_YELLOW_("%s"), filename); res = PM3_EFILE;