diff --git a/client/src/cmdhf.c b/client/src/cmdhf.c index 5fea3c61e..ba3710e6e 100644 --- a/client/src/cmdhf.c +++ b/client/src/cmdhf.c @@ -85,6 +85,7 @@ static int usage_hf_tune(void) { } #define PROMPT_CLEARLINE PrintAndLogEx(INPLACE, " ") +#define PROMPT_EMPTYLINE PrintAndLogEx(NORMAL, "\r "); int CmdHFSearch(const char *Cmd) { @@ -193,7 +194,8 @@ int CmdHFSearch(const char *Cmd) { PrintAndLogEx(INPLACE, _RED_("No known/supported 13.56 MHz tags found")); res = PM3_ESOFT; } - printf("\n"); + + PROMPT_EMPTYLINE; return res; }