no printf

This commit is contained in:
iceman1001 2020-08-28 19:24:10 +02:00
commit 0270a25808

View file

@ -85,6 +85,7 @@ static int usage_hf_tune(void) {
} }
#define PROMPT_CLEARLINE PrintAndLogEx(INPLACE, " ") #define PROMPT_CLEARLINE PrintAndLogEx(INPLACE, " ")
#define PROMPT_EMPTYLINE PrintAndLogEx(NORMAL, "\r ");
int CmdHFSearch(const char *Cmd) { 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")); PrintAndLogEx(INPLACE, _RED_("No known/supported 13.56 MHz tags found"));
res = PM3_ESOFT; res = PM3_ESOFT;
} }
printf("\n");
PROMPT_EMPTYLINE;
return res; return res;
} }