From 858224244d14a5f6be0f8ae4794e8553e12f3e92 Mon Sep 17 00:00:00 2001 From: Brian Pow Date: Wed, 21 Feb 2018 18:45:18 +0800 Subject: [PATCH] tweak messages --- client/cmdhflegic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdhflegic.c b/client/cmdhflegic.c index 0ca38d313..f5349756d 100644 --- a/client/cmdhflegic.c +++ b/client/cmdhflegic.c @@ -938,7 +938,7 @@ int CmdLegicDump(const char *Cmd){ f = fopen(filename,"wb"); if (!f) { - PrintAndLogEx(NORMAL, "Could not create file name %s", filename); + PrintAndLogEx(WARNING, "Could not create file name %s", filename); if (data) free(data); return 5; @@ -1185,7 +1185,7 @@ int CmdLegicESave(const char *Cmd) { // open file f = fopen(filename,"wb"); if (!f) { - PrintAndLogEx(NORMAL, "Could not create file name %s", filename); + PrintAndLogEx(WARNING, "Could not create file name %s", filename); free(data); return 1; }