From 97a7349510b8c2349d52252f47e7235ee800a3ba Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sun, 6 Sep 2020 17:41:55 +0200 Subject: [PATCH] hf search: fix 'no tag found' message display --- client/src/cmdhf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhf.c b/client/src/cmdhf.c index ba3710e6e..bb2491e91 100644 --- a/client/src/cmdhf.c +++ b/client/src/cmdhf.c @@ -189,13 +189,13 @@ int CmdHFSearch(const char *Cmd) { */ PROMPT_CLEARLINE; + PROMPT_EMPTYLINE; if (res != PM3_SUCCESS) { - PrintAndLogEx(INPLACE, _RED_("No known/supported 13.56 MHz tags found")); + PrintAndLogEx(WARNING, _RED_("No known/supported 13.56 MHz tags found")); res = PM3_ESOFT; } - PROMPT_EMPTYLINE; return res; }