From 4306f853437c1a7a45937016f8ada075fb0a5059 Mon Sep 17 00:00:00 2001 From: Brian Pow Date: Wed, 21 Feb 2018 18:46:49 +0800 Subject: [PATCH] tweak messages --- client/cmdhfmfu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdhfmfu.c b/client/cmdhfmfu.c index 43ce0e69b..01cc1e348 100644 --- a/client/cmdhfmfu.c +++ b/client/cmdhfmfu.c @@ -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; }